Y
Hacker News
new
|
ask
|
show
|
jobs
by
DblPlusUngood
2622 days ago
Is recovery of a shared memory queue after one of the workers crashes even possible, in general? (what if the worker crashed before releasing a lock?)
1 comments
alkonaut
2622 days ago
I’m not sure how this is usually done but I’d avoid locks at nearly any cost and try to use a lock-free spmc queue such as
https://github.com/tudinfse/FFQ
link