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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What do you use SQLite for?

8 点作者 spacesarebetter超过 3 年前

4 条评论

MH15超过 3 年前
Using it as a cache for exported functions, structs, etc in already compiled files in my incremental compiler project for the language I am designing. The first time you compile a file its exported entities are added to the table, then if you don’t change the file you can skip compilation of said file.<p>Working well so far but I feel like it’s a little much for the job.
melissalobos超过 3 年前
I use it for a personal notes app, any Android app I have made. I don&#x27;t think I have needed a serious DB like postgres for any project in the last 5 years, sqlite has been more than enough.<p>If I were at the same scale as Facebook or Google I would probably pick something with a better concurrency story though.
otoolep超过 3 年前
I use it as the storage engine for rqlite, a distributed relational database.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;rqlite&#x2F;rqlite" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rqlite&#x2F;rqlite</a>
muzani超过 3 年前
It&#x27;s perfect for use in Android, in both strengths and weaknesses.