-
Redis.IO as a Queue with C#
I was thinking about it for a couple of days. Of course there are who already thought the same.
The Redis Cookbook shows us how to implement a simple FIFO queue using Lists. Take a look to Redis Cookbook.
Also there are two mayor implementations. One on Python called QR which includes queue, capped collection and stacks structures. the other for Ruby is called Resque.
But I couldn’t found nothing on C#. So I made my own based on QR using the StackService Redis Client.
source code: https://github.com/alejamp/Resques.net