mongo.destroy(rmongodb)
mongo.destroy()所属R语言包:rmongodb
Destroy a MongoDB connection
摧毁一个MongoDB的连接
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Destroy a mongo connection. The connection is disconnected first if it is still connected. No further communication is possible on the connection. Releases resources attached to the connection on both client and server.
消灭一个蒙戈连接。第一,如果仍然连接断开连接。没有进一步的沟通是可能的连接。释放资源,在客户端和服务器的连接。
Although the 'destroy' functions in this package are called automatically by garbage collection, this one in particular should be called as soon as feasible when finished with the connection so that server resources are freed.
虽然“破坏”功能会自动调用该包中的垃圾回收,这其中尤其应称为可引号况下尽快完成连接,使服务器资源被释放。
用法----------Usage----------
mongo.destroy(mongo)
参数----------Arguments----------
参数:mongo
(mongo) a mongo connection object.
(蒙戈)蒙戈的连接对象。
值----------Value----------
NULL
NULL
参见----------See Also----------
mongo,<br> mongo.disconnect,<br> mongo.is.connected<br> mongo.reconnect.
蒙戈,参考mongo.disconnect,参考mongo.is.connected参考mongo.reconnect。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
n_people <- mongo.count(mongo, "test.people")
mongo.destroy(mongo)
print(n_people)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|