docs.rs failed to build blazen-memory-valkey-0.1.124
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
blazen-memory-valkey-0.6.75
blazen-memory-valkey
A Valkey/Redis backend for [blazen-memory].
This crate provides [ValkeyBackend], an implementation of
MemoryBackend that persists entries in
Valkey (or Redis-compatible) using the following key layout:
| Key pattern | Type | Contents |
|---|---|---|
{prefix}entry:{id} |
STRING | JSON-serialized StoredEntry |
{prefix}bands:{band_value} |
SET | Entry IDs sharing this LSH band |
{prefix}ids |
SET | All entry IDs |
Quick start
use ValkeyBackend;
use ;
# async