Redis Streams Implementation #38
-
Hello arduino-redis team, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @saiprasadsamudrala, Thank you for reaching out! Streams support could definitely be added to this library, it's just something I haven't had the time to get to myself yet. I would love it if you put together an implementation, just submit it as a pull request and I'll happily review and merge it! As for implementation details, it's (hopefully) pretty straightforward: all the commands are implemented in Feel free to reach out with any further questions, I'm more than happy to help in any way I can. Thank you again for your interest and willingness to help, it is very much appreciated! 🙌 |
Beta Was this translation helpful? Give feedback.
Hi @saiprasadsamudrala,
Thank you for reaching out! Streams support could definitely be added to this library, it's just something I haven't had the time to get to myself yet. I would love it if you put together an implementation, just submit it as a pull request and I'll happily review and merge it!
As for implementation details, it's (hopefully) pretty straightforward: all the commands are implemented in
Redis.cpp
and you'll note there are a couple macros defined to reduce the code duplication each requires. Additionally, please be sure to add a test for each added command intest/test.ino
.Feel free to reach out with any further questions, I'm more than happy to help in any way I can. …