Skip to content

Instantly share code, notes, and snippets.

@shavit
Created September 2, 2016 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shavit/ecc1a1518714d50699b2aba8d6de3225 to your computer and use it in GitHub Desktop.
Save shavit/ecc1a1518714d50699b2aba8d6de3225 to your computer and use it in GitHub Desktop.
Create a tailable MongoDB capped collection
db.createCollection("jobs", {
capped: 1,
size: 100000,
max: 10
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment