Skip to content

Instantly share code, notes, and snippets.

@fabioperrella
fabioperrella / mongo_shell
Created April 3, 2012 12:02
mongodb criando indice para custom field
> db.contacts.find({"custom_fields.gender":"fem"}).explain()
{
"cursor" : "BasicCursor",
"nscanned" : 1002,
"nscannedObjects" : 1002,
"n" : 244,
"indexBounds" : {
}
}
@fabioperrella
fabioperrella / mongos
Created March 19, 2012 12:12
MongoDB init script for Mongos in Debian
#!/bin/sh
#
# init.d script with LSB support.
#
# Copyright (c) 2007 Javier Fernandez-Sanguino <jfs@debian.org>
#
# This is free software; you may redistribute it and/or modify
# it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2,
# or (at your option) any later version.