pallets
pallets copied to clipboard
Simple and reliable workflow engine, written in Ruby
Pipelining commands on a Redis instance are deprecated and will be removed in Redis 5.0.0. ```ruby redis.pipelined do redis.get("key") end ``` should be replaced by ```ruby redis.pipelined do |pipeline| pipeline.get("key")...
There are some simpler use cases that should not require a full Redis setup. For that, a memory backend would be very useful. Think of short demos or proof of...
This reverts an earlier change. Workflows are not given up anymore if a task would return false. This was not intuitive and could potentially hide an actual issue within the...
Because one cannot blocking-pop from a list and push to a sorted set, we first push to a list (reliably), then to the set. Because of this, jobs are not...