No, not on top of SQLite. In SQLite.
WITH RECURSIVE plus WITHOUT ROWID plus a small app-defined function.
Might be time to stop.
(This is for a very cool verifiable transparency log indexing thing.)
No, not on top of SQLite. In SQLite.
WITH RECURSIVE plus WITHOUT ROWID plus a small app-defined function.
Might be time to stop.
(This is for a very cool verifiable transparency log indexing thing.)
The first:
sqlite.org/wal.html#wal...
The second:
sqlite.org/staleexpridx...
Fun times holding SQLite in unique ways!
SQLite folk have been a joy to work with & worth every penny.
The first:
sqlite.org/wal.html#wal...
The second:
sqlite.org/staleexpridx...
Fun times holding SQLite in unique ways!
SQLite folk have been a joy to work with & worth every penny.
I am researching VACUUM and I was studying their code. In VACUUM, SQLite creates a temp file prefixed with `etilqs_`
Here is why:
I am researching VACUUM and I was studying their code. In VACUUM, SQLite creates a temp file prefixed with `etilqs_`
Here is why:
Where is data stored? sqlite
How is data organized? sqlite
What is the unit of data? sqlite
How are relations expressed? sqlite
How are datasets composed? sqlite
How are schemas defined? sqlite
Where is data stored? sqlite
How is data organized? sqlite
What is the unit of data? sqlite
How are relations expressed? sqlite
How are datasets composed? sqlite
How are schemas defined? sqlite
I firmly expect to have someone cite it to me as an example of how PostgreSQL scales extremely well.
sqlite is a database
sqlite is a file format
sqlite is a table serialization format
sqlite is a database
sqlite is a file format
sqlite is a table serialization format
To prevent the unlimited growth I regularly delete likes older than 90 days. The size of the "ratings" table should be stable (there are ~20M likeds per day).
Turns out another source of growth is...
- when to use sqlite
- when to use postgres
- when to use sqlite
- when to use postgres