I have rails 4.2 + sidekiq on ubuntu setup and I'm starting my jobs with cron every hour with something like
bin/rails runner -e production 'MyJob.perform_later'
This basically take a job and puts data to redis, so that sidekiq could take it and start from there. But everytime i do this I have this spring proccesses stuck and waiting for something (consuming memory)
ps aux | grep spring
root Sl 07:13 0:00 spring server | myapp | started 6 secs ago
root Ssl 07:13 0:03 spring app | myapp | started 6 secs ago | production mode
Sometimes I see like 10 of those. Is there any way not to start spring server?
Thank you.