Project

valkey

0.0
Repository is archived
There's a lot of open issues
A Ruby client library for Valkey based on redis-rb.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 1.17.0
 Project Readme

Valkey

Valkey gem is based on redis-rb and provides a Ruby client for Valkey

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"