Method: Redis::Distributed#unwatch
- Defined in:
- lib/redis/distributed.rb
#unwatch ⇒ Object
Forget about all watched keys.
980 981 982 983 984 985 986 |
# File 'lib/redis/distributed.rb', line 980 def unwatch raise CannotDistribute, :unwatch unless @watch_key result = node_for(@watch_key).unwatch @watch_key = nil result end |