DavidBM / rsmq-async-rs

RSMQ port to async rust. RSMQ is a simple redis queue system that works in any redis v2.6+
MIT License
44 stars 8 forks source link

async & sync support #22

Open GopherJ opened 6 months ago

GopherJ commented 6 months ago

it'll be good to support both async and sync, although this crate's name is async hhh, but sync can enable more complex application logic and trees etc

GopherJ commented 6 months ago

I made a sync version in my fork: https://github.com/GopherJ/rsmq-sync but eventually need to find a way to switch between async & sync.

GopherJ commented 6 months ago

https://github.com/fMeow/maybe-async-rs is an option but redis's interface isn't very format. it has invoke_async and query_async

DavidBM commented 5 months ago

Added a new sync facade. Let me know if tha works