Method: Redis::Distributed#set

Defined in:
lib/redis/distributed.rb

#set(key, value, **options) ⇒ Object

Set the string value of a key.



291
292
293
# File 'lib/redis/distributed.rb', line 291

def set(key, value, **options)
  node_for(key).set(key, value, **options)
end