I have two separate applications running on heroku and pointing to same database, first one responsible for user interface
and second one for admin interface
, I am using sidekiq
with redis
for background job processing, I have added one worker and I am able to share 'redis-server' by setting environment variable pointing to same Redis providing Addon, Now i wish to share worker too, because adding the extra worker will cost double.
Please suggest, whether this is even possible or not?