Y
Hacker News
new
|
ask
|
show
|
jobs
by
densh
28 days ago
Sqlite is essentially a user space queryable file system and it can be faster than writing to file system directly while working with small files.
1 comments
andix
27 days ago
SQLite is in-process. A user space file system is another process. Like Postgres if we want to compare fs with dbs. And Postgres is slow for many small queries, like a userspace file system.
link