top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Why Only Mongodb suits MEAN techstack

0 votes
358 views

As per my understanding MEAN (Mongodb,Express,Angular.js,Node.js) techstack is the recent buzz in the market for building Web Applications.

My confusion is, why only Mongodb suits the best when compared to other NoSql databases like (hbase, cassandra). If Mongodb is best suited, then why?

Also, can we use hive with angular.js and node.js ?. Can someone help me out with your best answers?

posted Feb 26, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Hive is certainly not a good option because it is not designed to be transactional, it is purely an analytical tool.

There are many many conversations comparing hbase, cassandra and Mongodb and no one is claiming to always use Mongodb, which is a document database and the other two are not.Mongodb has great API, and tools for rapid development but it is certainly no the only option.

For example if you are dealing with sensory data with very high throughput, Cassandra or Hbase always are better.

answer Feb 26, 2015 by Naveena Garg
Similar Questions
0 votes

Please advise if a NodeJS app should keep its historical data in a separate MongoDB databases instead of keeping them together with the application data?
For instance, 'transactions' collection and 'transactionhistories' collection, will it be better to store in different databases or single database for the same NodeJS app? Thanks!

+1 vote

I am using mongo db version 2.2.3 . I am having the requirement like user gives the input like "(ash|ben) & (Bus|car)" as search keywords. In this the & is for AND condition and | for the OR condition.
Is there any way to make this nested leywords as a mongodb query in node js. Is there any functionality in mongodb to achieve this?. If not how can make this in any other way?

+1 vote

I use nodejs with mongoDB and I want to insert JSON data into mongo, I use mongoose but I don't wanna to use model and shéma just push different json with different shéma.

Can someone tell me how I can do it ?

...