←back to thread

295 points mrsuh | 10 comments | | HN request time: 0.994s | source | bottom
1. IX-103 ◴[] No.42136324[source]
> I wanted to see how a database management system (DBMS) stores an index in both disk and memory, and how it searches through an Index...I chose SQLite for my experiments

SQLite is a bit of an outlier in how it handles...everything, but even more so in query processing. SQLite tends to favor simplicity over performance, which causes it to implement things differently than every other DB I've worked with. You have to understand - SQLite isn't competing with other databases. It's competing with JSON and XML files for persistent storage. This means that how it implements anything tells you practically nothing about how a real database would do something.

replies(3): >>42138218 #>>42138240 #>>42138785 #
2. cogman10 ◴[] No.42138218[source]
Meh, it isn't really too far off from the way other DBMS servers handle storage and indexes. The principles are pretty identical (especially when sqlite operates in WAL mode).
3. ngrilly ◴[] No.42138240[source]
SQLite is a real database engine. I guess what you mean is that SQLite is not competing with database servers.
replies(1): >>42148397 #
4. graemep ◴[] No.42138785[source]
> SQLite isn't competing with other databases. It's competing with JSON and XML files for persistent storage

It competes with both. its clearly used for local persistent storage. SO are quite a lot of other things. It also competes with other RDBMSes where a separate server process is not a requirement.

That does mean it serves very different requirements, its just that its use case are a lot wider than just replacing JSON and XML files and similar.

replies(1): >>42140986 #
5. threatofrain ◴[] No.42140986[source]
> It also competes with other RDBMSes where a separate server process is not a requirement.

If you casually list off the top DB's either by usage or by recent hotness then almost all of them will have a server, but you'll also find they're basically all not embedded DB's with exception to RocksDB.

replies(1): >>42147626 #
6. e28eta ◴[] No.42147626{3}[source]
I’m familiar with this embedded DB, used in Quickbooks desktop: https://en.m.wikipedia.org/wiki/SQL_Anywhere

So… large usage, but probably not very high on the hotness scale

7. ASalazarMX ◴[] No.42148397[source]
And even that is questionable, since many web applications offer SQLite as another DB back end, and it works just fine for a wider range of workloads than one would expect.
replies(1): >>42149065 #
8. ngrilly ◴[] No.42149065{3}[source]
Agreed. SQLite is becoming popular on the server-side as well. The latest version of Rails making SQLite the default is particularly interesting.
replies(1): >>42150363 #
9. baq ◴[] No.42150363{4}[source]
the problem with sqlite has never been performance, it's always been extreme (dead)locking when writing concurrently - how does Rails get around that assuming this is actually recommended for prod deployments?
replies(1): >>42150482 #
10. ngrilly ◴[] No.42150482{5}[source]
https://fractaledmind.github.io/2024/04/15/sqlite-on-rails-t...