I'd like to share Mungo, a GAE/J API for Document storage. 

A really quick example of how Mungo works:

Mungo mungo = new Mungo(); 
  DB testDB = mungo.getDB("testDB");
  DBCollection messages = testDB.createCollection("Message");
  BasicDBObject obj = new BasicDBObject("{\"hello\" : \"world\"}");
  obj.put("hi", "there");
  WriteResult wr = messages.insert(obj); // Done!
  DBObject result = messages.findOne(obj.getId()); // Get it


Here's a simple guestbook app to showcase Mungo: 
http://mungoae-guestbook.appspot.com/

Get the code: 
http://bit.ly/1964JGp

if you find this project interesting why not fork it and implement a 
feature or a bug fix:
https://github.com/pagecrumb/mungo

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to