Comment on Async Task QueuesComments−conroy14yStoring the queue locally is great for speed, but it sacrifices durability. When an app server crashes, all those queued tasks are lost in the ether.−dugmartin14yThe server they are using, beanstalkd, has a persistent bin log option. Of course if your disk also crashes you are up a creek.
Comments
Storing the queue locally is great for speed, but it sacrifices durability. When an app server crashes, all those queued tasks are lost in the ether.
The server they are using, beanstalkd, has a persistent bin log option. Of course if your disk also crashes you are up a creek.