Skip to content

Instantly share code, notes, and snippets.

@suryaajha
Created October 22, 2018 08:55
Show Gist options
  • Save suryaajha/c10d67ea64a107ba8e268ed8933c3d19 to your computer and use it in GitHub Desktop.
Save suryaajha/c10d67ea64a107ba8e268ed8933c3d19 to your computer and use it in GitHub Desktop.
1) Create Collection with options
db.createCollection(
'users',
{
capped : true,
size : 100,
max : 2
}
);
2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment