smrchy/rsmq

Add Async Python implementation

federicotdn opened this issue · 0 comments

Hi! I've created a new Python implementation of RSMQ, using an async Redis library, which enables the entire package to be async as well.

You can find it here: https://github.com/federicotdn/aiorsmq

I've added some tests that run it against the main JavaScript RSMQ implementation. The interface of aiorsmq is almost the same as the one for RSMQ, with some changes made to make it more pythonic (and thus easier to use for Python users). Internally, it does exactly the same stuff that RSMQ does.

Hopefully the current work done will be enough to add it to the alternative implementations list - let me know if I'm missing anything.

Thanks!