---
title: "💭 valkey-io/valkey: A flexible distributed key-value datastore t..."
description: "!https://github.com/valkey-io/valkey"
date: 2025-02-17
published: true
tags:
  - dev
  - thought
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://github.com/valkey-io/valkey" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-image">
      <img src="https://opengraph.githubassets.com/ee2832e32f5cd2b3fb1c00ecfd99bc5e98d94e3ed7fdd43633759269ee2d1d4b/valkey-io/valkey" alt="GitHub - valkey-io/valkey: A flexible distributed key-value database that is optimized for caching and other realtime workloads. — A flexible distributed key-value database that is optimized for caching and other realtime workloads. - valkey-io/valkey" loading="lazy">
    </div>
    <div class="embed-card-content">
      <div class="embed-card-title">GitHub - valkey-io/valkey: A flexible distributed key-value database that is optimized for caching and other realtime workloads.</div>
      <div class="embed-card-description">A flexible distributed key-value database that is optimized for caching and other realtime workloads. - valkey-io/valkey</div>
      <div class="embed-card-meta">GitHub &middot; github.com</div>
    </div>
  </a>
</div>


valkey appears to be the largest open source fork of redis that was forked just before their transition to the new source available licenses.

One notable thing missing from the readme is how to run with docker, which I saw in the valkey-py docs.

``` bash
docker run -p 6379:6379 -it valkey/valkey:latest
```

You can install the python library with

``` bash
python -m venv .venv
. ./.venv/bin/activate
pip install "valkey[libvalkey]"
```


!!! note

    This post is a <a href="/thoughts/" class="wikilink" data-title="Thoughts" data-description="These are generally my thoughts on a web page or some sort of url, except a rare few don&#39;t have a link. These are dual published off of my..." data-date="2024-04-01">thought</a>. It's a short note that I make
    about someone else's content online <a href="/tags/thoughts/" class="hashtag-tag" data-tag="thoughts" data-count=2 data-reading-time=3 data-reading-time-text="3 minutes">#thoughts</a>
