fl0v
fl0v
The current MongoDb Query implementation does not have cache capability :( Caching has to be handled outside mongo interaction. Would be nice though to be able to use caching with...
i think the mutex part of your code is wrong, as it is now it does not block execution in case mutex is not aquired. @see https://www.yiiframework.com/doc/api/2.0/yii-mutex-mutex
`$mutex = $this->mutex->acquire(__CLASS__ . $this->channel, $this->mutexTimeout);` should handle if $mutex is false
I think if you have 500k jobs then db driver is not the best choice (especially if you use several channels), use a specialized messaging service instead. The db driver...