What do you recommend?
Ask HN: I am looking for a light-weight, fast database
1–6 of 6 posts
Re: Ask HN: I am looking for a light-weight, fast database
#2I've had good luck using sqlite3 for both a hobby project (a photo organizer http://github.com/kghose/Chhobi) as well as for work (neural data analysis)
Re: Ask HN: I am looking for a light-weight, fast database
#3What's the use case? Are you looking for mobile platform compatible database, or for web backends?
Re: Ask HN: I am looking for a light-weight, fast database
#4I've had good luck using sqlite3 for both a hobby project (a photo organizer http://github.com/kghose/Chhobi ) as well as for work (neural data analysis)
I've had good luck with SQlite as well, until I have multiple writers, or even concurrent readers or writers.
Re: Ask HN: I am looking for a light-weight, fast database
#5It depends on what you need. sqlite if you need SQL queries /indexes,etc, try leveldb if key/value store will work, its fast and micro.
Re: Ask HN: I am looking for a light-weight, fast database
#6MongoDB is 'lightweight' in the sense it's easy to setup and persistence of both simple and complex objects is a breeze. The query interface is a bit ugly but it may be worth a look.