https://github.com/valkey-io/valkey-glide-ruby
A Ruby client library for Valkey
https://github.com/valkey-io/valkey-glide-ruby
Last synced: 6 months ago
JSON representation
A Ruby client library for Valkey
- Host: GitHub
- URL: https://github.com/valkey-io/valkey-glide-ruby
- Owner: valkey-io
- Created: 2025-07-09T14:42:33.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-07-18T03:31:10.000Z (6 months ago)
- Last Synced: 2025-07-18T06:51:16.318Z (6 months ago)
- Language: Ruby
- Homepage:
- Size: 1.94 MB
- Stars: 16
- Watchers: 1
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Valkey
A Ruby client library for [Valkey][valkey-home] built with [Valkey Glide Core][valkey-glide-home] 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:
```ruby
require "valkey"
valkey = Valkey.new
valkey.set("mykey", "hello world")
# => "OK"
valkey.get("mykey")
# => "hello world"
```
Checkout [the implementation status of the Valkey commands][commands-implementation-progress].
[valkey-home]: https://valkey.io
[valkey-glide-home]: https://github.com/valkey-io/valkey-glide
[commands-implementation-progress]: https://github.com/valkey-io/valkey-glide-ruby/wiki/The-implementation-status-of-the-Valkey-commands