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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of crystal-resque-client or a related project?
README
crystal-resque-client
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
- Fork it ( https://github.com/pine/crystal-resque-client/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- pine613 Pine Mizune - creator, maintainer