SQLite is an open-source in-process SQL database engine that makes it easy to build portable, self-contained databases. Because SQLite stores each database in a single file, it works naturally with Archil — just create yourDocumentation Index
Fetch the complete documentation index at: https://docs.archil.com/llms.txt
Use this file to discover all available pages before exploring further.
.db file on an Archil mount.
SQLite doesn’t need to know anything about Archil or S3. It reads and writes files as usual, and Archil
handles caching on fast SSD storage and synchronizing to S3 in the background. This is especially useful for
organizations that create a SQLite database per user — you only pay for the databases that are actively being
accessed.
Create an Archil disk
First, follow the Archil Getting Started Guide to create an Archil disk.Install SQLite
On Amazon Linux 2023, you can install SQLite with the following command:(Optional) Run a benchmark to validate performance
We’ll do a performance benchmark of sqlite using thespeedtest1 tool from the SQLite authors.
Let’s install and compile this tool.