Skip to content

Instantly share code, notes, and snippets.

@takungsk
Created September 17, 2012 02:51
Show Gist options
  • Save takungsk/3735306 to your computer and use it in GitHub Desktop.
Save takungsk/3735306 to your computer and use it in GitHub Desktop.
Monogodb メモ

mongodb memo

mongo command

DBを切り替える

use DB-name

DBの一覧

show dbs

コレクションの一覧

show collections

コレクションの中身を表示

db.collection-name.find();

コレクションの中身を削除

db.collection-name.remove();

コレクションを一つだけ条件を指定して検索

db.collection-name.findOne({email:"foo@bar"})

mongodump command

backup

 # mongodump

mongorestore command

restore

 # mongorestore dumped-dir-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment