Will ukv ever have support for queues? #228
-
I am looking ukv as an alternative for redis. Today redis support queues also. ukv in general great for addressing different modalities. It would be good to add queues also. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Potentially, yes. However, series and queues are dissimilar in their writing patterns. The first is append-only, and the latter is first-in-first-out. The best structure for a queue is a ring buffer, not a key-value store. It can be added for compatibility, but it may not be the best idea right away. Let's keep this conversation open and see if there is more demand for this to be prioritized. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply. I hope at some point ukv will be a contender to replace redis. Today's key/value market share is dominent by redis. Some of other projects like kvrocks, tidis offer redis compatibility. It would be nice to have an ability to add redis as a compatibility layer. This way we can use existing redis libraries for and without coding chnages we can start using ukv. |
Beta Was this translation helpful? Give feedback.
Potentially, yes. However, series and queues are dissimilar in their writing patterns. The first is append-only, and the latter is first-in-first-out. The best structure for a queue is a ring buffer, not a key-value store. It can be added for compatibility, but it may not be the best idea right away.
Let's keep this conversation open and see if there is more demand for this to be prioritized.