SQLite is nice for small, standalone projects, since the data file is a single object that lives with the project. Most of the NoSQL solutions I've seen are servers that store data there. Is there a NoSQL solution that keeps the data in a single file like SQLite?
|
closed as off topic by John Gardeniers, voretaq7♦ Jul 28 '12 at 4:14
Questions on Server Fault are expected to relate to professional server, networking, or related infrastructure administration within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
If you really have a hard-on for keeping everything in a single file (well, almost), BerkeleyDB is what you want. However, I'd probably just use the original key-value store: your filesystem. |
|||
|
|
|
There's GDBM:
|
|||
|
|
|
yep its called CSV http://en.wikipedia.org/wiki/Comma-separated_values example http://code.activestate.com/recipes/577419-query-csv-file/ |
|||||
|