Zum Ende der Metadaten springen
Zum Anfang der Metadaten

Sie zeigen eine alte Version dieser Seite an. Zeigen Sie die aktuelle Version an.

Unterschiede anzeigen Seitenhistorie anzeigen

« Vorherige Version anzeigen Version 9 Nächste Version anzeigen »

Mongo shell commands can be executed in console modeThe inputs are directly forwarded to the native mongo shell and are not formatted or modified by the application.

This is a new feature since version 1.2.0! The former console mode (C) is now moved to server side script mode (S).

Here you will find the documentation of the Mongo shell commands: http://docs.mongodb.org/manual/core/crud-introduction/

// Returns all documents
db.zipcode.find();
 
// Returns all cities name and sorted by them
db.zipcode.find({}, {city: 1}).sort({city: 1})
 
// Create a new zipcode document
db.zipcode.insert({_id: '99999', city: 'LEIPZIG', pop: 520838, state: 'SN'})
 
// Analyze the find-query
db.zipcode.find().explain()
 
// Show the statistics of the collection
db.zipcode.stats();

There is no pager in server side script mode. Just as in the mongo shell, there are only 10 records returned. When you type "it", the next 10 records are loaded.

 

 

  • Keine Stichwörter