diff --git a/client-libraries/ruby_2/rubyredis.rb b/client-libraries/ruby_2/rubyredis.rb index a6a7408f..9be390e3 100644 --- a/client-libraries/ruby_2/rubyredis.rb +++ b/client-libraries/ruby_2/rubyredis.rb @@ -51,6 +51,14 @@ class RedisClient raise "SELECT not allowed, use the :db option when creating the object" end + def [](key) + get(key) + end + + def []=(key,value) + set(key,value) + end + def read_reply line = @sock.gets case line[0..0]