TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

3 点作者 baritalia超过 12 年前
What do you recommend?

4 条评论

kghose超过 12 年前
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 未加载
dotmanish超过 12 年前
What's the use case? Are you looking for mobile platform compatible database, or for web backends?
ssjvackar超过 12 年前
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.
jfaucett超过 12 年前
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.