Popularity
9.9
Stable
Activity
2.9
-
765
25
73

Programming language: Crystal
License: GNU Lesser General Public License v3.0 only
Tags: Queue    
Latest version: v0.6.1

sidekiq.cr alternatives and similar shards

Based on the "Queue" category.
Alternatively, view sidekiq.cr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of sidekiq.cr or a related project?

Add another 'Queue' Shard

README

Sidekiq.cr

Build Status Dependency Status devDependency Status

Sidekiq is a well-regarded background job framework for Ruby. Now we're bringing the awesomeness to Crystal, a Ruby-like language. Why? To give you options. Ruby is friendly and flexible but not terribly fast. Crystal is statically-typed, compiled and very fast but retains a similar syntax to Ruby.

Rough, initial benchmarks on macOS 10.14.5:

Runtime RSS Time Throughput
MRI 2.6.3 55MB 11.1 9,000 jobs/sec
MRI/hiredis 62MB 8.3 12,000 jobs/sec
Crystal 0.29.0 15MB 1.4 69,200 jobs/sec

If you have jobs which are CPU-intensive or require very high throughput, Crystal is an excellent alternative to native Ruby extensions. It compiles to a single executable so deployment is much easier than Ruby.

Getting Started

Please see the wiki for in-depth documentation and how to get started using Sidekiq.cr in your own app.

Upgrade?

If you use and like this project, please let me know. If demand warrants, I may port Sidekiq Pro and Enterprise functionality to Crystal for sale.

Help wanted

See the issues for chores and other ideas to help.

Things that do not exist and probably won't ever:

  • Support for daemonization, pidfiles, log rotation - use Upstart/Systemd
  • Delayed extensions - too dynamic for Crystal

The Ruby and Crystal versions of Sidekiq must remain data compatible in Redis. Both versions should be able to create and process jobs from each other. Their APIs are not and should not be identical but rather idiomatic to their respective languages.

Author

Mike Perham, http://www.mikeperham.com, @mperham / @sidekiq