Skip to content

valkey-io/valkey-glide-ruby

Repository files navigation

Valkey

A Ruby client library for Valkey built with Valkey Glide Core that tries to provide a drop in replacement for redis-rb.

Getting started

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"

Checkout the implementation status of the Valkey commands.

About

A Ruby client library for Valkey

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published