Which NOSQL DB can I use to have concurrent writes and read for around 2000 to 5000 users? I used MongoDB but that is not working as concurrency is not possible in mongoDB. And yes I want to use that NOSQL DB in my JAVA code.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
we use Apache Cassandra quite successful, it’s write optimated db solution, which has multiple client options http://wiki.apache.org/cassandra/ClientOptions, e.g. the Java Hector Client.
Cassandra is made for horizontal scaling, so if the performance is unsufficiant we just add another node (server) and the performance goes up.
We do thousands of concurrent writes in one seconds and we haven’t really started to scale horizontal.