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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

SQLite Turns 20

186 点作者 marcobambini将近 5 年前

16 条评论

dang将近 5 年前
There was a considerable SQLite thread less than a week ago: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=23281994" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=23281994</a>.
deepspace将近 5 年前
I use SQLite frequently, often without thinking about it, but every once in a while I stand back and reflect on what an amazing piece of software it is. An RDBMS without a standalone database engine, delivering rock-solid performance, through exceptional code quality.<p>It scales unexpectedly well with large data sets, and the performance is way beyond what you would expect from a library (as opposed to a &#x27;real&#x27; database).<p>Hats off to the developers for creating and maintaining this amazing software.
评论 #23359059 未加载
评论 #23362427 未加载
oefrha将近 5 年前
One of the notable aspects of SQLite as a open source project is being open source but not open-contribution. drh put it in public domain, and doesn’t accept outside contributions to prevent it from being contaminated in any way. In an open source landscape where bazaar seems to have mostly won, SQLite remains one of the (last?) cathedral strongholds, and serves as a good reminder to aggressive contributors that open source maintainers don’t have to accept or even consider their PRs.<p><a href="https:&#x2F;&#x2F;sqlite.org&#x2F;copyright.html" rel="nofollow">https:&#x2F;&#x2F;sqlite.org&#x2F;copyright.html</a>
评论 #23359001 未加载
评论 #23359131 未加载
评论 #23359083 未加载
评论 #23359045 未加载
sargun将近 5 年前
SQLite is a much younger project than I thought it was. Given the ubiquity, and capabilities that it provides, it&#x27;s impressive. On the other hand, Linux and Python are 29 years old.<p>Postgres, in its current form is ~23 years old. It started in the 1980s.
评论 #23358855 未加载
评论 #23358968 未加载
评论 #23358935 未加载
评论 #23358880 未加载
anyfoo将近 5 年前
Literally the only criticisms I have is that sqlite is actually dynamically typed, not statically as you would expect! The schema only defines a field&#x27;s &quot;recommended&quot; type.<p>The documentation is very explicit about that[1], but it might still come unexpected, be forgotten, or, worst of all, cause problems that manifest much much later than if they would have at insertion. I remember one particular very ugly episode of that.<p>But that is all. As a whole, sqlite is amazing, rock solid, amazingly documented, and my immediate go-to if I need a (serverless) database. I don&#x27;t remember encountering a bug, in mission-critical software.
评论 #23359682 未加载
nus07将近 5 年前
I heard the creator Richard Hipp speak at a conference a few years back and I absolutely loved listening to him . He is humble and seems a bit of a throwback compared to Silicon Valley tech moguls . May the genius and simplicity of SQLite shine on .
评论 #23376127 未加载
me551ah将近 5 年前
Where can you use SQLite?<p>Embedded Systems: Yes<p>Raspberry Pi : Yes<p>Mobile Apps. : Yes<p>Desktop Apps : Yes<p>Browsers : No<p>Servers : Yes<p>Supercomputers : Yes
评论 #23361322 未加载
评论 #23358886 未加载
评论 #23358888 未加载
评论 #23359102 未加载
ardit33将近 5 年前
Has anybody used Sqlite in a server side, production level capacity....<p>I know it works great on embeded cases, but how about server side with a decent user load?
评论 #23359128 未加载
评论 #23359845 未加载
评论 #23359249 未加载
评论 #23359044 未加载
评论 #23359807 未加载
评论 #23359038 未加载
whalesalad将近 5 年前
I always love reading the comments section of an SQLite post to hear about all of the incredibly unique ways people are using it.
shirshak55将近 5 年前
While doing small project sqlite is a very good tool. Thanks to sqlite team for making such a great software.
person_of_color将近 5 年前
I believe the SQLite license is one of the greatest contributions in technology. Hope to see it on something game changing one day.
评论 #23359011 未加载
评论 #23358934 未加载
zubairq将近 5 年前
Again I love SQLite! <a href="https:&#x2F;&#x2F;github.com&#x2F;zubairq&#x2F;pilot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;zubairq&#x2F;pilot</a> Would not be possible without it! Why? SQLite works on the server, in Electron (barely), and purely client side on the browser, and is fast!
melq将近 5 年前
Cool to see a well-loved, gold standard of an open source project reach a milestone like this. That said, the few cherry picked commits on that page were not particularly interesting (atleast to me, not a db expert by any means), and the color coding is inscrutable.
评论 #23358889 未加载
fmajid将近 5 年前
I just checked and I have been using it since 2003...
ekvintroj将近 5 年前
What a noble piece of software.
battery_cowboy将近 5 年前
I would be proud to make something a hundredth as useful and prevalent as SQLite.