From b14457166c5d7e2f8c9b07c20efa42fec6475b39 Mon Sep 17 00:00:00 2001 From: Robert Blakey Date: Mon, 21 Jul 2025 13:11:08 -0400 Subject: [PATCH 1/2] docs: update readme yaml config example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a8174c..6d44dad 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ production: &production databases: [production_cache1, production_cache2] store_options: <<: *default_store_options - max_entries: <%= 256.gigabytes %> + max_entries: 10_000_000 # default is null ``` For the full list of keys for `store_options` see [Cache configuration](#cache-configuration). Any options passed to the cache lookup will overwrite those specified here. From 75571da37db8e71c367a34b74b40c30ed0f94399 Mon Sep 17 00:00:00 2001 From: Robert Blakey Date: Thu, 6 Nov 2025 06:28:11 -0500 Subject: [PATCH 2/2] docs: update example to use max_size, consistent with other examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d44dad..5ac3c1a 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ production: &production databases: [production_cache1, production_cache2] store_options: <<: *default_store_options - max_entries: 10_000_000 # default is null + max_size: <%= 256.gigabytes %> ``` For the full list of keys for `store_options` see [Cache configuration](#cache-configuration). Any options passed to the cache lookup will overwrite those specified here.