ReactiveMongoMongoDB 的 Scala 驱动
ReactiveMongo 是一个 MongoDB 的 Scala 驱动,提供完全的非堵塞和异步 I/O 操作。
示例代码:
def test() { import reactivemongo.api._ import scala.concurrent.ExecutionContext.Implicits.global val connection = MongoConnection( List( "localhost:27017" ) ) val db = connection("plugin") val collection = db("acoll") }
评论