You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
T2 should get the "value1" for key "key1" only once.
T2:
localhost:7379> GET.WATCH key1
entered the watch mode for GET.WATCH key1
OK [fingerprint=765825083] value1
Observed output
T2 got "value1" twice. This is the first time for SET and the second for a GET command.
T2:
localhost:7379> GET.WATCH key1
entered the watch mode for GET.WATCH key1
OK [fingerprint=765825083] value1
OK [fingerprint=765825083] value1 // Got value for the second time when GET was called on T1
The text was updated successfully, but these errors were encountered:
irounik
changed the title
GET.WATCH Notified Unexpectedly on GET Operation"GET.WATCH Notified Unexpectedly on GET Operation
Mar 25, 2025
Steps to Reproduce
Open two terminals (T1 & T2)
T2:
GET.WATCH key1
T1:
SET key1 value1
GET key1
Expected output
T2 should get the "value1" for key "key1" only once.
T2:
Observed output
T2 got "value1" twice. This is the first time for SET and the second for a GET command.
T2:
The text was updated successfully, but these errors were encountered: