Programmer Question
We're interested in deploying MongoDB, but we need to know if we can limit database/table sizes?
For example:
db.user1.find()
db.user2.find()
As you can see from the above, each user will have their own database. We want to limit each user's database so we don't have any one user eating up all our hard drive space.
Is this possible with MongoDB?
Thanks.
Find the answer here