Skip to content

Instantly share code, notes, and snippets.

@m2ym
Created January 19, 2012 13:57
Show Gist options
  • Select an option

  • Save m2ym/1640154 to your computer and use it in GitHub Desktop.

Select an option

Save m2ym/1640154 to your computer and use it in GitHub Desktop.
.mongorc.js
DBCollection.prototype.sample = function () {
return this.find().skip(Math.floor(Math.random() * this.count())).limit(1).next();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment