A Ruby client library for Valkey built with Valkey Glide Core that tries to provide a drop in replacement for redis-rb.
Install with:
$ gem install valkey
You can connect to Valkey by instantiating the Valkey
class:
require "valkey"
valkey = Valkey.new
valkey.set("mykey", "hello world")
# => "OK"
valkey.get("mykey")
# => "hello world"