Created
October 22, 2018 08:55
-
-
Save suryaajha/c10d67ea64a107ba8e268ed8933c3d19 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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