In couch db how many maximum number of creation of user are possible and is there any kind of limit and i also want to know ,is there any limit for creation of databases?????
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Users are just entries in an user database. I have yet to encounter any problems with having too many users, except of course for running out of disk space. There are also no built-in restrictions on the number of databases, however databases are mapped to files on the disk and are therefore subject to file system limitations such as having too many files in a single directory, or opening too many file descriptors at once. These limits can be raised, but don't expect to have more than a few thousand active databases at once. |
|||
|
|