mongo.insert.batch(rmongodb)
mongo.insert.batch()所属R语言包:rmongodb
Add multiple records to a collection
添加多条记录的集合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add multiple records to a collection. This function eliminates some network traffic and server overhead by sending all the records in a single message.
添加多个记录的集合。此功能消除了一些网络流量和服务器开销,通过发送单个消息中的所有记录。
See http://www.mongodb.org/display/DOCS/Inserting.
请参阅http://www.mongodb.org/display/DOCS/Inserting。
用法----------Usage----------
mongo.insert.batch(mongo, ns, lst)
参数----------Arguments----------
参数:mongo
(mongo) a mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:ns
(string) namespace of the collection to which to add the record.
(字符串)的集合,将记录添加到命名空间。
参数:lst
A list of (mongo.bson) records to add.
(mongo.bson)记录的添加列表。
值----------Value----------
TRUE if the command was successfully sent to the server; otherwise, FALSE.
TRUE如果命令被成功发送到服务器,否则返回FALSE。
mongo.get.last.err() may be examined to verify that the insert was successful on the server if necessary.
mongo.get.last.err()可以进行检查,以核实,如有必要,在服务器上插入成功。
参见----------See Also----------
mongo.insert,<br> mongo.update,<br> mongo.find,<br> mongo.find.one,<br> mongo.remove,<br> mongo.bson,<br> mongo.
mongo.insert,参考mongo.update,参考mongo.find,参考mongo.find.one,参考mongo.remove,参考mongo.bson,< BR>蒙戈。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
ns <- "test.people"
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Dave")
mongo.bson.buffer.append(buf, "age", 27L)
x <- mongo.bson.from.buffer(buf)
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Fred")
mongo.bson.buffer.append(buf, "age", 31L)
y <- mongo.bson.from.buffer(buf)
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Silvia")
mongo.bson.buffer.append(buf, "city", 24L)
z <- mongo.bson.from.buffer(buf)
mongo.insert.batch(mongo, ns, list(x, y, z))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|