mongo.gridfs.store(rmongodb)
mongo.gridfs.store()所属R语言包:rmongodb
Store raw data as a file in a GridFS
原始数据作为文件存储在GridFS
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Store raw data as a file to a GridFS on a MongoDB server. This function stores the entire piece of data file on the server, breaking it up into 256K chunks as necessary.
到GridFS一个MongoDB的服务器上的文件存储原始数据。此功能整片的数据文件存储在服务器上,将其分成256K块必要的。
This function only handles the RAW type. Use writeBin() as necessary to pack your data appropriately for storage. See the examples and R's documentation on writeBin().
此功能只处理RAW类型。使用writeBin()包所必需的适当的数据存储。见的例子,R的文档writeBin()的。
Use mongo.gridfile.writer when you need to buffer many writes to a GridFS file.
需要当你使用mongo.gridfile.writer的缓冲许多写入到一个GridFS文件。
用法----------Usage----------
mongo.gridfs.store(gridfs, raw, remotename, contenttype="")
参数----------Arguments----------
参数:gridfs
A (mongo.gridfs) object.
A(mongo.gridfs)的对象。
参数:raw
(raw) The data to store on the server.
(原始)的数据存储在服务器上。
参数:remotename
(string) The name the file will be known as within the GridFS.
(字符串)的名称,该文件将被称为内GridFS。
参数:contenttype
(string) Optional MIME content type.
(字符串)可选的MIME内容类型。
值----------Value----------
TRUE, if successful; FALSE, if an error occured during the operation.
TRUE,如果成功,FALSE,如果在操作过程中发生错误。
参见----------See Also----------
mongo.gridfs,<br> mongo.gridfs.create,<br> mongo.gridfs.remove.file.
mongo.gridfs,参考mongo.gridfs.create,参考mongo.gridfs.remove.file。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
gridfs <- mongo.gridfs.create(mongo, "grid")
# store 4 bytes[存储4个字节]
mongo.gridfs.store(gridfs, charToRaw("test"), "test4.dat")
# store string & LF plus 0-byte terminator[存储串LF加0字节终止]
buf <- writeBin("Test\n", as.raw(1))
mongo.gridfs.store(gridfs, buf, "test6.dat")
# store PI as a float[存储PI为float]
buf <- writeBin(3.1415926, as.raw(1), size=4, endian="little")
mongo.gridfs.store(gridfs, buf, "PI.dat")
mongo.gridfs.destroy(gridfs)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|