I'm working on a project that was using Solid Queue v0.7.0 and using bundle exec rake solid_queue:start to start the process. When I updated to v1.0.0 last week, I also changed the command to start Solid Queue to use bin/jobs per current documentation.
I noticed that the memory use of the associated Heroku app was greatly increased. I wasn't sure if this was due to updating the gem or changing the start command, so I tried changing back the command from bin/jobs to the Rake task and have noticed a decrease in memory use, per screenshot below.

I read in the discussion on #343 that using bin/jobs is supposed to help with memory use thanks to eager loading, so I'm a bit puzzled by this situation.
I'm working on a project that was using Solid Queue v0.7.0 and using
bundle exec rake solid_queue:startto start the process. When I updated to v1.0.0 last week, I also changed the command to start Solid Queue to usebin/jobsper current documentation.I noticed that the memory use of the associated Heroku app was greatly increased. I wasn't sure if this was due to updating the gem or changing the start command, so I tried changing back the command from
bin/jobsto the Rake task and have noticed a decrease in memory use, per screenshot below.I read in the discussion on #343 that using
bin/jobsis supposed to help with memory use thanks to eager loading, so I'm a bit puzzled by this situation.