mongo.bson(rmongodb)
mongo.bson()所属R语言包:rmongodb
The mongo.bson class
mongo.bson类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Objects of class "mongo.bson" are used to store BSON documents. BSON is the form that MongoDB uses to store documents in its database. MongoDB network traffic also uses BSON in messages.
的类“mongo.bson”的对象是用来存储BSON文件。 BSON是MongoDB的使用在其数据库中存储文件的形式。 MongoDB的网络流量也使用BSON的消息。
See http://www.mongodb.org/display/DOCS/BSON.
请参阅http://www.mongodb.org/display/DOCS/BSON。
mongo.bson objects have "mongo.bson" as their class and contain an externally managed pointer to the actual document data. This pointer is stored in the "mongo.bson" attribute of the object.
mongo.bson的对象“mongo.bson”作为自己的类,包含外部管理到实际的文档数据的指针。该指针被存储在“mongo.bson”属性的对象。
Objects of class "mongo.bson.iterator" are used to iterate over a mongo.bson object to enumerate its keys and values.
对象的类“mongo.bson.iterator”用来遍历超过mongo.bson对象,列举其键和值。
Objects of class "mongo.bson.buffer" are used to build BSON documents.
用于建立BSON文档对象的类“mongo.bson.buffer”。
参见----------See Also----------
mongo.bson.from.list,<br> mongo.bson.to.list,<br> mongo.bson.iterator,<br> mongo.bson.buffer,<br> mongo.bson.from.buffer,<br> mongo.bson.empty,<br> mongo.find.one,<br> mongo.bson.destroy, link{mongo.shorthand}.
mongo.bson.from.list,参考mongo.bson.to.list,<BR>的mongo.bson.iterator,mongo.bson.buffer参考,参考mongo.bson.from.buffer,参考mongo.bson.empty参考mongo.find.one,参考mongo.bson.destroy,link{mongo.shorthand}。
实例----------Examples----------
b <- mongo.bson.from.list(list(name="Fred", age=29, city="Boston"))
iter <- mongo.bson.iterator.create(b) # b is of class "mongo.bson"[b是类“mongo.bson”]
while (mongo.bson.iterator.next(iter))
print(mongo.bson.iterator.value(iter))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|