TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: I am looking for a light-weight, fast database

3 pointsby baritaliaover 12 years ago
What do you recommend?

4 comments

kghoseover 12 years ago
I've had good luck using sqlite3 for both a hobby project (a photo organizer <a href="http://github.com/kghose/Chhobi" rel="nofollow">http://github.com/kghose/Chhobi</a>) as well as for work (neural data analysis)
评论 #4982616 未加载
dotmanishover 12 years ago
What's the use case? Are you looking for mobile platform compatible database, or for web backends?
ssjvackarover 12 years ago
MongoDB 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.
jfaucettover 12 years ago
It 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.