samvera-deprecated / reqflow

Simple, self-aware, requirements based workflow manager based on Redis/Resque.
Other
3 stars 0 forks source link

Abstract the Queue and Storage Implemenations #3

Open jcoyne opened 10 years ago

jcoyne commented 10 years ago

This would allow using another storage medium (e.g. ActiveRecord), and another Queue (RabbitMQ).

Seems fairly straightforward so long as the storage driver can implement: get, set, query, transaction

For abstracting the queue I'd look at ActiveJob https://github.com/rails/activejob

dchandekstark commented 9 years ago

+1 to using ActiveJob.

mbklein commented 9 years ago

I'll take a look at this. Thanks.