Y
Hacker News
new
|
ask
|
show
|
jobs
by
alexbezhan
1040 days ago
I'm using SQLite as my main database. Is it a bad idea to build queues on top of SQLite?
2 comments
andrewstuart
1040 days ago
SKIP LOCKED guarantees that a row can only be read once. This is critical for queueing systems.
SQLite does not support SKIP LOCKED.
link
dunno7456
1040 days ago
No
link
SQLite does not support SKIP LOCKED.