Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
blackrock
on Nov 21, 2020
|
parent
|
context
|
favorite
| on:
SQLite briefing for Linux kernel hackers (2019)
Can you simulate concurrency with SQLite somehow?
Like, using a front program to control traffic flow for queries to read and write.
dmurray
on Nov 21, 2020
[–]
You could add a queue and execute the queries one at a time. Probably SQLite or at least popular wrappers for it already do this? But it will be slower than a DBMS that allows you to make hundreds of queries in parallel.
blackrock
on Nov 21, 2020
|
parent
[–]
Didn’t SQLite say that their lock/unlock process is really fast? Such that it doesn’t really pose a significant drawback.
Consider applying for YC's Spring batch! Applications are open till Feb 11.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Like, using a front program to control traffic flow for queries to read and write.