If you don’t trust the intuitive systems thinkers in your organization, you are likely deleting the wrong things when it comes to simplifying software design.| Colin Breck
SkyPilot uses the venerable SQLite for state management. SQLite can handle millions of QPS, and terabytes of data. However, our efforts to scale our Managed Jobs feature ran up against the one downfall of SQLite: many concurrent writers. Since SkyPilot typically runs as a CLI on your laptop, we wanted to stick with SQLite, so we decided to figure out how we can make it work. We were very surprised with some of our findings.| SkyPilot Blog
SQLite claims to be one of the most popular pieces of software in the world, being integrated into every major operating system and browser. It...| tenthousandmeters.com
At Terrateam, we are big fans of Fly.io. The service is hosted there and it’s served us well. Just deploy your TOML file, get your infrastructure, do something else with the rest of your day. One of the interesting sides of Fly is that they invest heavily in server-side SQLite. They’ve written a number of blog posts on how they enable server-side SQLite: I’m All-In on Server-Side SQLite - Ben Johnson, the author of BoltDB, joins Fly to work on Litestream, a SQLite replication solution. ...| pid1
I love simplicity. Complexity is our eternal enemy and Simplicity is beautiful; rarely something is as simple as SQLite: a single-file, in-process database. It runs inside our application, there is no need for a separate database server.| binaryigor.com
A Code Review of My Earliest Projects| www.dannyguo.com
Temporary Files Used By SQLite| www.sqlite.org
How to make sure Django is working before you deploy it| Matt Segal Dev
Appropriate Uses For SQLite| www.sqlite.org
Many Small Queries Are Efficient In SQLite| www.sqlite.org
Learn how to build a miniature analytics system for Twitter data.| den.dev