runco​​mmand不是casbah mongocolection的成员

时间:2013-05-28 04:43:03

标签: mongodb scala casbah mongodb-scala mongo-scala-driver

db.foo.insert( { _id: 1 , desc: "the dog is running" } )
db.foo.insert( { _id: 2 , desc: "the cat is walking" } )
db.foo.ensureIndex( { "desc": "text" } )
db.foo.runCommand( "text", { search : "walk" } )

这是在mongo中运行的

我如何使用casbah在scala中运行相同的内容 感谢

1 个答案:

答案 0 :(得分:0)

import com.mongodb.casbah.Imports._

// Connect to MongoDB
val conn = MongoClient()
val adminDB = conn("admin")

// Turn on textSearchEnabled
adminDB.command(MongoDBObject("setParameter" -> 1, "textSearchEnabled" -> 1))

// Add some sample data to the text db, foo collection
val coll = conn("text")("foo")
coll.dropCollection()
coll.save(MongoDbObject( "_id" -> 1 , "desc" -> "the dog is running"))
coll.save(MongoDbObject( "_id" -> 2 , "desc" -> "the cat is walking"))

// Add a text index
coll.ensureIndex(MongoDBObject("body" -> "desc"))

// Search for walk
coll.db.command(MongoDBObject("text" -> "foo", "search" -> "walk"))