Merge branch 'mongo-factor-driver' of git://github.com/x6j8x/factor

db4
Slava Pestov 2009-05-04 07:20:18 -05:00
commit 034dcc9c3b
2 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ ARTICLE: "mongodb" "MongoDB factor integration"
{ $heading "Highlevel tuple integration" }
"The " { $vocab-link "mongodb.tuple" } " vocabulary lets you define persistent tuples that can be stored to and retrieved from a MongoDB database"
{ $unchecked-example
"USING: mongodb.driver mongodb.tuple fry ;"
"USING: mongodb.driver mongodb.tuple fry literals ;"
"MDBTUPLE: person name age ; "
"person \"persons\" { { \"age\" +fieldindex+ } } define-persistent "
"person \"persons\" { } { $[ \"ageIdx\" [ \"age\" asc ] key-spec <tuple-index> ] } define-persistent "
"\"db\" \"127.0.0.1\" 27017 <mdb>"
"person new \"Alfred\" >>name 57 >>age"
"'[ _ save-tuple person new 57 >>age select-tuple ] with-db"

View File

@ -1,6 +1,6 @@
USING: accessors assocs classes.mixin classes.tuple
classes.tuple.parser compiler.units fry kernel sequences mongodb.driver
mongodb.msg mongodb.tuple.collection mongodb.tuple.index
mongodb.msg mongodb.tuple.collection
mongodb.tuple.persistent mongodb.tuple.state strings ;
IN: mongodb.tuple