mediocregopher / radix.v2

Redis client for Go
http://godoc.org/github.com/mediocregopher/radix.v2
MIT License
433 stars 92 forks source link

Would you like to implement a reliable message queue using `RPOPLPUSH`? #30

Closed Akagi201 closed 8 years ago

Akagi201 commented 8 years ago

similar project: https://github.com/adjust/rmq

mediocregopher commented 8 years ago

Looks like one already exists :P You could also check out https://github.com/mc0/okq which I worked on with some other friends, it's currently being used in production at my current company and it's working out pretty great. Hope this helps!

mediocregopher commented 8 years ago

Also I should say that antirez is discussing adding kafka-style queues to redis as a builtin type, which will be interesting and is definitely something to keep an eye out for, as that would probably cover your use-case as well once it's out.

Akagi201 commented 8 years ago

@mediocregopher Nice job!!! Very nice project.

mediocregopher commented 8 years ago

Thanks! :D