From d857bc43888937f384bfd9e764c778bffdb1e450 Mon Sep 17 00:00:00 2001 From: Benjamin Janssens Date: Mon, 17 Nov 2025 15:00:36 +0100 Subject: [PATCH] docs(cache): improve docs Signed-off-by: Benjamin Janssens --- docs/backend-system/core-services/cache.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/backend-system/core-services/cache.md b/docs/backend-system/core-services/cache.md index 188ae0791a..a23332409b 100644 --- a/docs/backend-system/core-services/cache.md +++ b/docs/backend-system/core-services/cache.md @@ -96,8 +96,8 @@ For Redis and Valkey stores, you can configure a global namespace that will be p - **Without namespace**: Cache keys use only the plugin ID (e.g., `catalog:some-key`) - **With namespace**: Cache keys use the format `namespace:pluginId:key` (e.g., `my-app:catalog:some-key`) -For Redis, `keyPrefixSeparator` controls what character is used between the namespace and plugin ID (defaults to `:`). -For Valkey, you set the full `keyPrefix` including the separator. +For **Redis**, `keyPrefixSeparator` controls what character is used between the namespace and plugin ID (defaults to `:`). +For **Valkey**, you set the full `keyPrefix` including the separator. **Note**: In-memory, Memcache and Infinispan stores do not support namespace configuration and will always use the plugin ID directly.