0
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 中运行相同谢谢

4

1 回答 1

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"))
于 2013-06-10T09:24:14.057 回答