6 ms·
I'm using SQLite as my main database. Is it a bad idea to build queues on top of SQLite?
by alexbezhan 3y ago
I'm using SQLite as my main database. Is it a bad idea to build queues on top of SQLite?
- dunno7456 3y agoNo
- andrewstuart 3y agoSKIP LOCKED guarantees that a row can only be read once. This is critical for queueing systems. SQLite does not support SKIP LOCKED.