activejob-locking
activejob-locking copied to clipboard
Hi there. I'm using the suo adapter on my project and I had to hack activejob-locking to pass through a port and password for the redis server to the underlying...
Heroku gives us a Redis connection string that looks kinda like this: `redis://h:[email protected]:6379` Unfortunately the SuoRedis adapter doesn't support passing AdapterOptions, so we can't do this: ```ruby ActiveJob::Locking.options.adapter = ActiveJob::Locking::Adapters::SuoRedis...
My app experienced an explosion of redis connections after I started using this gem, which is a problem because the redis service I use has a connection cap. It seems...