时间:2021-07-01 10:21:17 帮助过:22人阅读
> cmdCount = 1; 1 > prompt = function() { ... return (cmdCount++) + "> "; ... } function () { return (cmdCount++) + "> "; }
The prompt would then resemble the following:
1> 2> 3>
To create a mongo shell prompt in the form of <database>@<hostname>$, define the following variables:
3> prompt = "> " > host = db.serverStatus().host; huey > prompt = function() { ... return db+"@"+host+"$ "; ... } function () { return db+"@"+host+"$ "; }
The prompt would then resemble the following:
test@huey$
To create a mongo shell prompt that contains the system up time and the number of documents in the current database, define the following prompt variable in the mongo shell:
test@huey$ prompt = "> " > > prompt = function() { ... return "Uptime:"+db.serverStatus().uptime+" Documents:"+db.stats().objects+" > "; ... } function () { return "Uptime:"+db.serverStatus().uptime+" Documents:"+db.stats().objects+" > "; }
The prompt would then resemble the following:
Uptime:5897 Documents:6 >
You can use your own editor in the mongo shell by setting the EDITOR environment variable before starting the mongo shell.
export EDITOR=vim mongo
Once in the mongo shell, you can edit with the specified editor by typing edit <variable> or edit <function>, as in the following example:
function myFunction () { }
edit myFunction
The command should open the vim edit session. When finished with the edits, save and exit vim edit session.
myFunction
The result should be the changes from your saved edit:
function myFunction() { print("This was edited"); }
NOTE: As mongo shell interprets code edited in an external editor, it may modify code in functions, depending on the JavaScript compiler. For mongo may convert 1+1 to 2 or remove comments. The actual changes affect only the appearance of the code and will vary based on the version of JavaScript used but will not affect the semantics of the code.
The db.collection.find() method is the JavaScript method to retrieve documents from a collection. The db.collection.find() method returns a cursor to the results; however, in the mongo shell, if the returned cursor is not assigned to a variable using the var keyword, then the cursor is automatically iterated up to 20 times to print up to the first 20 documents that match the query. The mongo shell will prompt Type it to iterate another 20 times.
You can set the DBQuery.shellBatchSize attribute to change the number of documents from the default value of 20, as in the following example which sets it to 10:
DBQuery.shellBatchSize = 10;
MongoDB - The mongo Shell, Configure the mongo Shell
标签:https str erp key string class trie actual target