Popularity
1.1
Declining
Activity
0.0
Stable
2
2
0

Programming language: Crystal
License: MIT License
Tags: Queue    
Latest version: v0.1.1

crystal-resque-client alternatives and similar shards

Based on the "Queue" category.
Alternatively, view crystal-resque-client alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of crystal-resque-client or a related project?

Add another 'Queue' Shard

README

crystal-resque-client

Build Status Dependency Status devDependency Status

Simple Resque queue client for Crystal inspired by go-resque.

Installation

Add this to your application's shard.yml:

dependencies:
  resque_client:
    github: pine/crystal-resque-client
    branch: master
  redis:
    github: stefanwille/crystal-redis
    version: ~> 1.2.1

Usage

require "redis"
require "resque_client"

redis = Redis.new
enqueuer = Resque::Client::Enqueuer.new(redis)

enqueuer.enqueue("Class", "arg1", 1000, true)

Contributing

  1. Fork it ( https://github.com/pine/crystal-resque-client/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • pine613 Pine Mizune - creator, maintainer