Version 3.1.0 adds
- support for storing jobs in MySQL 8, thanks @jeanparpaillon !
- persisting job params as an Elixir/Erlang term, thanks @lukyanov !
You can insert any arbitrary Elixir/Erlang term into the queue:
{"SendEmail", "jonas@gmail.com", "Welcome!"}
|> MyApp.JobQueue.new()
|> MyApp.Repo.insert()
You should use the option :params_type when defining your...