I am developing a simple internal use application with an intended user base of around 100 people. The application does a lot of reads and very few writes. The dataset size is fairly small and we do not want to use a RDBMS if possible. In fact, the relational requirements are fairly small. I am looking at using some NoSQL database and I am looking for one with the following requirements.

  1. A simple, stable implementation which can be accessed easily from Java (i.e has a Java client).
  2. I would like to be able to run a test application from a Windows box although the final deployment is on a Linux box.
  3. Setup of the NoSQL DB should be minimal.
  4. I am not concerned with scaling the DB because we expect to limit the dataset size and trim old data occasionally.

Any suggestions would be helpful. I am currently considering redis + jredis

EDIT: One of my main motivations for this project is also to look into the programming model and ways of usage of NoSql DBs. I understand I can use flat files, blobs etc.

link|improve this question

67% accept rate
1  
Since simple flat files require no setup and don't use SQL, what are you asking? – S.Lott Aug 10 '10 at 18:00
@S.Lott - Agreed. I also want to use the opportunity to do a starter project using a NoSQL database. – Thimmayya Aug 10 '10 at 18:03
Serializing is simple. download.oracle.com/javase/6/docs/api/java/io/Serializable.html – msw Aug 10 '10 at 18:06
@Thimmayya: then this is a rhetorical question. Use what you think will be fun. – msw Aug 10 '10 at 18:08
@msw - It is rhetorical :). Just want to see if there are any suggestions that I may not have found while googling. – Thimmayya Aug 10 '10 at 18:12
show 7 more comments
feedback

7 Answers

Definitely OrientDB (http://www.orientechnologies.com):

  • It's 100% written in Java (requires JRE 1.6 for the client/server version, otherwise JRE 1.5)
  • Elegant Java APIs
  • Really fast. About 50.000 insert/sec on common HW
  • Small: less than 1Mb for all
  • Support for SQL with extension for links, graphs and objects
  • Native support for Security
  • Run as embedded or in client/server configuration. Next releases will support clustering and partitioning
  • Apache 2 license: free for any use
  • Much more
link|improve this answer
feedback

I've had great success with Neo4J. The database is embedded so the amount of effort required to get the system running is minimal. Additionally the client interface to the DB is a pleasure to work with.

The entire setup is two additional jars on the classpath.

link|improve this answer
Thanks. I will look it up. – Thimmayya Aug 10 '10 at 19:57
+1 for neo4j. I've been using it in a project and found it integrates very easily into a project. My only gripe is version 1.1 doesn't have a way to get a relationship between two nodes by providing a method getRelationship(node1, node2). Otherwise, it's been awesome. I'd recommend it. – FloppyDisk Aug 11 '10 at 3:41
feedback

If you're looking for a simple stable implementation of a NoSQL DB system, look no further than Apache (they have over 10 years of development experience).

Few that comes to mind:

  • CouchDB
  • Cassandra. Developed by Facebook but now under Apache. Twitter, Facebook, Digg, etc. are using Cassandra. It's fully written in Java and can be accessed via Java using Thrift or Avro.
  • Redis (although Redis doesn't run flexibly well on Windows OS). It's owned by VMWare.
link|improve this answer
2  
You do NOT want to use Cassandra for this. It would be the exact wrong choice for your requirements. – ericflo Aug 10 '10 at 20:34
@ericflo - Can you elaborate a bit more please? – Thimmayya Aug 10 '10 at 21:18
Cassandra != easy if you ask me! It scales very well if I have to believe digg,facebook, twitter, etc. – Alfred Dec 7 '10 at 3:20
@Alfred, it's easier once you get the hang of it. It's just creating your column families that's a schlep. – The Elite Gentleman Dec 7 '10 at 10:38
feedback

A document database has a very simple storage model and basic query abilities. MongoDB for example, seems to have everything you need in terms of compatibility and is very easy to set up.

link|improve this answer
feedback

I would choose between 2 options:

1) Berkeley DB: it's very mature and at the same time very simple key-value storage. It could be the best choice in not one big issue: it was bought by Oracle and some licensing issues can occur now. Read carefully info about licensing and it your requirements don't break the agreement then go with it.

2) MySql on MyISAM engine without any foreign keys (i.e. several independent not normalized tables). You'll use it just as a key-value storage. Read this answer about using MySql as NoSql storage. If I were in your shoes, I'd go with this option just because I know that it would show great performance, there are mature tools for working with MySql, many people have experience with it and at any time you can easily use all its relational potential if you eventually decide to go back to RDBMS solutions.

link|improve this answer
feedback

The SQL database you have most experience with. MySQL, Postgre, HyperDB, whatever.

If you don't use joins and foreign keys, here's a sufficient "NoSQL" (which better be called no-joins) database. If you don't really need massive scalability, then you don't need to go for NoSQL.

link|improve this answer
feedback

What you're looking for is SQLite, who cares if it's a SQL db.

link|improve this answer
3  
Using SQLite is hardly an exercise in learning nosql – Jacob Feb 15 '11 at 12:31
-1 the Q is about nosql databases. There are already enough answers for SQL DBs for Java. – Aaron Digulla Mar 16 '11 at 13:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.