Project

job_store

0.0
No commit activity in last 3 years
No release in over 3 years
Per-job global storage for Sidekiq.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

 Project Readme

JobStore

Per-job global storage for Sidekiq

Do you ever wanted a global storage which is going to have always a clear state when a new job is picked up by the workers. Then JobStore is the gem you are looking for!

How to install JobStore?

Include JobStore in your Gemfile.

gem 'job_store'

Incude the middleware as a part of the Sidekiq server.

Sidekiq.configure_server do |config|
  config.server_middleware do |chain|
    chain.add JobStore::Middleware
  end
end