Replies: 1 comment
-
Hey @kraspasov , There are three settings for commands reliability: at-most-once, at-lease-once and exactly-once, as per the reference guide. If you are willing to accept the occasional lost commands the at-most-once setting seems to fit your needs:
I assume this should not be a huge problem if you are using Redis as a cache mechanism? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to know if there is a way to guarantee exactly-once execution for commands. The situation I am in is pretty specific:
What can I do to guarantee only the most recent value is the one persisted in Redis?
Beta Was this translation helpful? Give feedback.
All reactions