andrewducker (
andrewducker) wrote2011-09-02 01:14 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Question for the geeks in the crowd
Okay, so if I want something to scrape an RSS feed and turn it into a daily
LJ/DW post, how hard is that going to be? Anyone got something handy that
I can kick off on a daily basis?
Or a service they could recommend?
LJ/DW post, how hard is that going to be? Anyone got something handy that
I can kick off on a daily basis?
Or a service they could recommend?
no subject
no subject
no subject
TBH, everything I've used GAE for has had such simple data requirements that I've never needed to dig into that side of things. But I've used MongoDB when dicking around with Rails and am guessing that it's reasonably similar.
no subject
It's the hibernate equivalent for BigTable. Allows you to just put objects into the datastore and get them back. And because BigTable is basically just a key/value store it works incredibly simply.
You can do stuff like this:
Car porsche = new Car("2FAST", "red");
ofy.put(porsche);
and then retrieve it with:
Car car = ofy.query(Car.class).filter("vin", "2FAST").get();