Here is a quick script. I wrote for a co-worker. var host = “localhost” var port = 27000 var dbslist = db.adminCommand(‘listDatabases’); for( var d = 0; d < dbslist.databases.length; d++) { var db = connect(host+”:”+port+”/”+dbslist.databases[d].name); var collections = db.getCollectionNames(); for(var i = 0; i < collections.length; i++){ var name = collections[i]; if(name.substr(0, 6) !=…
NoSQL
Databases, that fall outside the of the Relational Database.
Elasticsearch
Elasticsearch is a distributed restful search and analytic tool that is built on the top of Apache Lucene for high performance. Elasticsearch features include: Real-Time Data Indexing Scalability High Availability Multi-Tenancy Full Text Search Document Orientation The flow of data never stops so the question is how quickly can that data become available. Elasticsearch indexes…