Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
blackrock
on June 28, 2020
|
parent
|
context
|
favorite
| on:
How Does Sqlite Work? (2014)
Is SQLite able to do multiple simultaneous writes to it at the same time?
Or is only one agent at a time, allowed to write to it?
pdimitar
on June 28, 2020
[–]
You can technically have many writer agents but they will all compete for an internal sqlite mutex so it's best you serialize write access in your own code.
Join us for
AI Startup School
this June 16-17 in San Francisco!
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Or is only one agent at a time, allowed to write to it?