We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
redic project page
gem install redic
require 'redic' r = Redic.new 'redis://127.0.0.1:9851' r.call 'set', 'fleet', 'truck', 'point', '33', '-115' # => 'OK' r.call 'get', 'fleet', 'truck' # => '{"type":"Point","coordinates":[-115,33]}'
Thanks to tom quas for providing this example code