Created
March 26, 2013 18:18
-
-
Save eedeebee/5247789 to your computer and use it in GitHub Desktop.
MLDB Samples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var db = new mldb(); // default options | |
| var doc = db.get("/messages/1", function(result) { | |
| logger.debug("Doc content: " + JSON.stringify(result.doc)); | |
| }); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var db = new mldb(); // default options | |
| db.save({from: "test", to: "all", body: "wibble"},"/messages/1", {collection: "messages"},function(result) { | |
| // now fetch it | |
| db.get("/messages/1", function(result) { | |
| // now print it | |
| // now delete it | |
| db.delete("/messages/1", function(result) { | |
| // done | |
| }); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment