2016-06-22

MongoDB - String search (similar to SQL's "like")

// Exact match
db.COLLECTION_NAME.find({ "textos.g" : "A phrase" });

// Case sensitive
db.COLLECTION_NAME.find({ "textos.g" : /.*god.*/ });
db.COLLECTION_NAME.find({ "textos.g" : /.*God.*/ });

// Case insensitive
db.COLLECTION_NAME.find({ "textos.g" : /.*god.*/i });

// Starts with
db.COLLECTION_NAME.find({ "textos.g" : /^g/i });

2016-06-16

MongoDB - How to shudown mongo?

Open terminal, and a new mongo session.

mongo
use admin
db.shutdownServer()