vote up 5 vote down star

I would like to store data persistently for my application, but I don't really need a full blown relational database. I really could get by with a basic "cache"-like persistent storage where the structure is just a (key, value) pair.

In lieu of a database what are my best, scalable options?

flag
The verdict is in: SQLite! :) – Kyle Cronin Nov 28 '08 at 16:55
No one can give a responsible answer to this question without knowing a lot more about what kind of data you are storing in what environment, and what you want to do with it. – Dour High Arch Nov 28 '08 at 18:17

11 Answers

vote up 1 vote down

If you want something really scalable, I wouldn't opt for a flat or XML file. As your data grows, it could kill your performance.

If you will have a lot of data at some stage, I would still opt for a database - I would take a look at something like SQLIte with a very simple schema to suit your needs.

link|flag
vote up 11 vote down

There's always SQLite, a database that's stored in a file. SQLite already has built-in concurrency, so you don't have to worry about things like file locking, and it's really fast for reads.

If, however, you are doing lots of database changes, it's best to do them all at once inside a transaction. This will only write the changes to the file once, as opposed to every time an change query is issued. This dramatically increases the speed of doing multiple changes.

When a change query is issued, whether it's inside a tranasction or not, the whole database is locked until that query finishes. This means that extremely large transactions could adversely affect the performance of other processes because they must wait for the transaction to finish before they can access the database. In practice, I haven't found this to be that noticeable, but it's always good practice to try to minimize the number of database modifying queries you issue.

link|flag
SQLite is fantastic and easy to integrate into an application. Best of all, there is no client-side installation needed to use it, it's all embedded into the application. – Jon Tackabury Nov 28 '08 at 16:59
However, it does have concurrency issues – Eran Galperin Nov 28 '08 at 17:01
vote up 1 vote down

I'm really not sure you should but have you considered just storing info in an XML doc if it really is that light? And if it's not have you considered SQLite?

link|flag
vote up 2 vote down

If you need scalability, then a RDBMS is your best bet. At the most basic level, you can serialize data structures into files - however, then you'd need to account for file locking issues which would limit concurrency.

SQLite is an SQL file-based database engine, which can run without a persistent database daemon (in PHP for example, it runs as an extension), however it too has concurrency issues (read the answers to this question which could help you decide if SQLite is right for you).

Unless you have a really good reason not to use a real DRBMS, I'd suggest you stick with MySQL or other "full-blown" engines.

link|flag
vote up 1 vote down

If your writing a java program that wants an imbedded database look at hsqldb since it is written in java and works much better then sqlite if being called from java programs.

link|flag
vote up 1 vote down

If you are writing Java, then there are Java database implementations (Jared mentions hsqldb, there are others) that you can directly include.

SQLite is fine for static inclusion, however you can also include MySQL within your application if you're using a compatible language such as C.

I think you would appreciate having SQL available as well. XML files just don't cut it any longer, maybe a couple of years ago when writing PDA software, but even the iPhone and Android includes SQLite now.

link|flag
vote up 1 vote down

hsqldb in in-memory mode will give you much better performance than flat file based databases. It's pretty easy to use too. And if the table gets too big, there is an option to cache it on disk too. Check out this link that compares performances.

link|flag
vote up 5 vote down

if you want a 'persistent cache', and already use memcached, check memcachedb. it's a persistent hashtable using the memcached protocol, no need for a new client (but a new daemon)

link|flag
vote up 1 vote down

For Key=Value pairs, you can use INI file format with simple load and save procedures to load it and save it to in-memory hash table.

That can later scale up to anythig, just by changing load and save procedures to work with db.

link|flag
vote up 1 vote down

You could try CounchDB, it is a very flexible document-oriented database that doesn't force you to define a schema up-front. It was written in Erlang and thanks to this it is considered very scalable solution. It can be easily queried through a REST interface.

link|flag
vote up 3 vote down

I ask a similar question recently. Here are some choices:

link|flag
ESE is great for big volumes of data, not necessarily as a cache. It works great for AD, Exchange, Wins, FRS, and other technologies. – Simara Mar 25 at 20:19

Your Answer

Get an OpenID
or

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