top | item 3546684

Show HN: a bash based data store written in python

27 points| alonsebastian | 14 years ago |blog.alonsebastian.com.ar | reply

6 comments

order
[+] Cieplak|14 years ago|reply
This reminds me that you can do a lot without having to setup an RDBMS. Take Hacker News for instance. However, the OP uses a file as a table, whereas HN uses unix directories as tables and uses files as table records, afaik.
[+] arethuza|14 years ago|reply
So what about managing indices (or at least map-reduce views - CouchDB style).

I'd really quite like the option of having something like CouchDB that kept documents as separate files but still allowed efficient querying.

[+] alonsebastian|14 years ago|reply
I tend to use sqlite for small projects, but I never really fancied SQL much and I'd never put an ORM on top of sqlite... so for really small things (and only local) I believe this may help