我的编程空间,编程开发者的网络收藏夹
学习永远不晚

MongoDB帮助信息:db方法,collection方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

MongoDB帮助信息:db方法,collection方法

 

  1. mongos> db.help()  
  2. DB methods:  
  3.         db.addUser(username, password[, readOnly=false])  
  4.         db.adminCommand(nameOrDocument) - switches to 'admin' db, and runs command [ just calls db.runCommand(...) ]  
  5.         db.auth(username, password)  
  6.         db.cloneDatabase(fromhost)  
  7.         db.commandHelp(name) returns the help for the command  
  8.         db.copyDatabase(fromdb, todb, fromhost)  
  9.         db.createCollection(name, { size : ..., capped : ..., max : ... } )  
  10.         db.currentOp() displays currently executing operations in the db  
  11.         db.dropDatabase()  
  12.         db.eval(func, args) run code server-side  
  13.         db.fsyncLock() flush data to disk and lock server for backups  
  14.         db.fsyncUnlock() unlocks server following a db.fsyncLock()  
  15.         db.getCollection(cname) same as db['cname'] or db.cname  
  16.         db.getCollectionNames()  
  17.         db.getLastError() - just returns the err msg string  
  18.         db.getLastErrorObj() - return full status object  
  19.         db.getMongo() get the server connection object  
  20.         db.getMongo().setSlaveOk() allow queries on a replication slave server  
  21.         db.getName()  
  22.         db.getPrevError()  
  23.         db.getProfilingLevel() - deprecated  
  24.         db.getProfilingStatus() - returns if profiling is on and slow threshold  
  25.         db.getReplicationInfo()  
  26.         db.getSiblingDB(name) get the db at the same server as this one  
  27.         db.hostInfo() get details about the server's host  
  28.         db.isMaster() check replica primary status  
  29.         db.killOp(opid) kills the current operation in the db  
  30.         db.listCommands() lists all the db commands  
  31.         db.loadServerScripts() loads all the scripts in db.system.js  
  32.         db.logout()  
  33.         db.printCollectionStats()  
  34.         db.printReplicationInfo()  
  35.         db.printShardingStatus()  
  36.         db.printSlaveReplicationInfo()  
  37.         db.removeUser(username)  
  38.         db.repairDatabase()  
  39.         db.resetError()  
  40.         db.runCommand(cmdObj) run a database command.  if cmdObj is a string, turns it into { cmdObj : 1 }  
  41.         db.serverStatus()  
  42.         db.setProfilingLevel(level,<slowms>) 0=off 1=slow 2=all  
  43.         db.setVerboseShell(flag) display extra information in shell output  
  44.         db.shutdownServer()  
  45.         db.stats()  
  46.         db.version() current version of the server  
  47. mongos> 

 

  1. mongos> db.myCollection.help()  
  2. DBCollection help  
  3.         db.myCollection.find().help() - show DBCursor help  
  4.         db.myCollection.count()  
  5.         db.myCollection.copyTo(newColl) - duplicates collection by copying all documents to newColl; no indexes are copied.  
  6.         db.myCollection.convertToCapped(maxBytes) - calls {convertToCapped:'myCollection', size:maxBytes}} command  
  7.         db.myCollection.dataSize()  
  8.         db.myCollection.distinct( key ) - e.g. db.myCollection.distinct( 'x' )  
  9.         db.myCollection.drop() drop the collection  
  10.         db.myCollection.dropIndex(index) - e.g. db.myCollection.dropIndex( "indexName" ) or db.myCollection.dropIndex( { "indexKey" : 1 } )  
  11.         db.myCollection.dropIndexes()  
  12.         db.myCollection.ensureIndex(keypattern[,options]) - options is an object with these possible fields: name, unique, dropDups  
  13.         db.myCollection.reIndex()  
  14.         db.myCollection.find([query],[fields]) - query is an optional query filter. fields is optional set of fields to return. e.g. db.myCollection.find( {x:77} , {name:1, x:1} )  
  15.         db.myCollection.find(...).count()  
  16.         db.myCollection.find(...).limit(n)  
  17.         db.myCollection.find(...).skip(n)  
  18.         db.myCollection.find(...).sort(...)  
  19.         db.myCollection.findOne([query])  
  20.         db.myCollection.findAndModify( { update : ... , remove : bool [, query:{}, sort: {}, 'new': false] } )  
  21.         db.myCollection.getDB() get DB object associated with collection  
  22.         db.myCollection.getIndexes()  
  23.         db.myCollection.group( { key : ..., initial: ..., reduce : ...[, cond: ...] } )  
  24.         db.myCollection.insert(obj)  
  25.         db.myCollection.mapReduce( mapFunction , reduceFunction , <optional params> )  
  26.         db.myCollection.remove(query)  
  27.         db.myCollection.renameCollection( newName , <dropTarget> ) renames the collection.  
  28.         db.myCollection.runCommand( name , <options> ) runs a db command with the given name where the first param is the collection name  
  29.         db.myCollection.save(obj)  
  30.         db.myCollection.stats()  
  31.         db.myCollection.storageSize() - includes free space allocated to this collection  
  32.         db.myCollection.totalIndexSize() - size in bytes of all the indexes  
  33.         db.myCollection.totalSize() - storage allocated for all data and indexes  
  34.         db.myCollection.update(query, object[, upsert_bool, multi_bool]) - instead of two flags, you can pass an object with fields: upsert, multi  
  35.         db.myCollection.validate( <full> ) - SLOW  
  36.         db.myCollection.getShardVersion() - only for use with sharding  
  37.         db.myCollection.getShardDistribution() - prints statistics about data distribution in the cluster  
  38.         db.myCollection.getSplitKeysForChunks( <maxChunkSize> ) - calculates split points over all chunks and returns splitter function 

 

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

MongoDB帮助信息:db方法,collection方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

VB.NET调用CHM帮助的实用方法

VB.NET调用CHM帮助的实用方法,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。VB.NET对CHM帮助进行调用可以通过很多种方法来实现。那么具体使用何种方法要根据我们在实际
2023-06-17

python文档之查看帮助文档方法

准备使用time模块,使用time模块的localtime函数,使用range类 在已经分清模块,函数,类的情况下开始测试方法一在python命令行输入以下内容help(time) # 很详细的
2023-01-31

java帮助文档打开的方法是什么

要打开Java帮助文档,你可以按照以下步骤操作:首先,确保已经安装了Java开发工具包(JDK)。在你的计算机上找到Java安装目录。通常情况下,Java安装目录的默认位置是在"C:\Program Files\Java"下。在Java安装
2023-10-24

Win10系统无法打开.hlp帮助文件的解决方法

在Windows 10操作系统中无法打开.hlp帮助文件的原因是因为微软在Windows 10中停用了对.hlp文件的支持。然而,您可以按照以下步骤解决该问题:1. 下载并安装WinHlp32.exe程序。这是微软提供的一个可在Window
2023-09-16

查看python的模块和函数帮助文档方法

python的一个优势是有着大量自带和在线的模块(module)资源,可以提供丰富的功能,在使用这些模块的时候,如果每次都去网站找在线文档会过于耗费时间,结果也不一定准确。因此这里介绍下python自带的查看帮助功能,可以在编程时不中断地迅
2023-01-31

奇怪报错信息“db already exists with different case already have”解决方法是什么

奇怪报错信息“db already exists with different case already have”解决方法是什么,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
2023-06-02

android帮助文档打开慢的三种解决方法

经查是因为本地文档中的网页有如下js代码会联网加载信息,将其注释掉后就好了代码如下:用一下j
2022-06-06

解密 Linux 版本信息的方法

显示和解释有关 Linux 版本的信息比看起来要复杂一些。与引用一个简单的版本号不同,识别 Linux 版本有很多种方法。即使只是快速查看一下 uname 命令的输出,也可以告诉你一些信息。这些信息是什么,它告诉你什么? 在本文中,我们将认
2022-06-03

linux查看硬盘信息的方法

这篇文章主要介绍linux查看硬盘信息的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!什么是Linux系统Linux是一种免费使用和自由传播的类UNIX操作系统,是一个基于POSIX的多用户、多任务、支持多线程和
2023-06-14

查看win10版本信息的方法

本文小编为大家详细介绍“查看win10版本信息的方法”,内容详细,步骤清晰,细节处理妥当,希望这篇“查看win10版本信息的方法”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。1.快捷方式【Win】+【R】打开【运
2023-07-01

编程热搜

目录