0.0
No commit activity in last 3 years
No release in over 3 years
Hook up AWS SQS with Message background/asynchronous job processing mechanism.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.0.8
 Project Readme

Message-SQS

Message provides flexible & reliable background/asynchronous job processing mechanism on top of simple queue interface.

Message-SQS hooks up AWS SQS with Message background/asynchronous job processing mechanism.

Installation

gem 'message-sqs'

How to use

Queuing jobs

Inspired by delayed_job API, call .enq.method(params) on any object and it will be processed in the background.

# without message
@img.resize(36)

# with message
@img.enq.resize(36)

Start worker to process jobs

Message.worker.start

see https://github.com/xli/message for more details