Skip to content

Instantly share code, notes, and snippets.

@muddydixon
Created July 20, 2012 01:29
Show Gist options
  • Save muddydixon/3148101 to your computer and use it in GitHub Desktop.
Save muddydixon/3148101 to your computer and use it in GitHub Desktop.
MongoDB にいっぱいcollection作ってみる
> for(var i = 0; i < 50000; i++){ db['col'+i].insert({name: 1}) }
too many namespaces/collections
> db.col20000.find()
>
..
> db.col12988.find()
>
> db.col12987.find()
{ "_id" : ObjectId("500823a6c7e72154412d4788"), "name" : 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment