zlacker

[parent] [thread] 0 comments
1. HeavyS+(OP)[view] [source] 2023-09-26 15:42:59
Terrible idea. Using a database for queues means using a file format that's not optimized for this, so, unless you don't delete the rows (effectively having a always-growing table) you'll run into performance issues. Also the index for a processed flag will cause contention.

I'm certain you can work around those issues, but why if you can use a proper queue?

[go to top]