From 907f98285169ede6d4ae31ced948599f40435226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Mon, 15 Dec 2025 22:02:15 +0100 Subject: [PATCH] Update .changeset/sour-lines-taste.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .changeset/sour-lines-taste.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.changeset/sour-lines-taste.md b/.changeset/sour-lines-taste.md index baed435419..83868d6a57 100644 --- a/.changeset/sour-lines-taste.md +++ b/.changeset/sour-lines-taste.md @@ -9,13 +9,14 @@ These changes are **required** to `app-config.yaml`: ```diff backend: cache: - valkey: - client: -- namespace: 'my-app' -- keyPrefixSeparator: ':' -+ keyPrefix: 'my-app:' -- clearBatchSize: 1000 -- useUnlink: false + store: valkey + connection: ... + client: +- namespace: 'my-app' +- keyPrefixSeparator: ':' ++ keyPrefix: 'my-app:' +- clearBatchSize: 1000 +- useUnlink: false ``` In comparison to Redis, Valkey requires the full `keyPrefix` including the separator to be specified instead of separate `namespace` and `keyPrefixSeparator` options. Also, Valkey does not support the `clearBatchSize` and `useUnlink` options.