Mongodb: What does webscale means

mongodbscalability

Mongodb is known to be webscale. I tried looking on the internet about what webscale actually means but ends with no luck. So, what does webscale really means? And how is it any different than any other scale? And why is mongodb known to be webscale while other DB is not?

Thanks in advance for your help.

Best Answer

I have feeling this is a term they've coined themselves. I'm assuming that it alludes to the fact that MongoDB supports sharding natively, which allows it to split a database (and requests) over several machines automatically, without this functionality having to be coded into the application itself. In fact, one of MongoDB's main strengths over MySQL is the ease of scaling.

Related Topic