From b87ea735fbd44a4f63094bdba965b1bf54de0bac Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Tue, 29 Nov 2016 17:48:07 +0200 Subject: [PATCH] Cache: Correct examples in documentation --- Documentation/Filters/Cache.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Filters/Cache.md b/Documentation/Filters/Cache.md index 932d031ff..a65f5c369 100644 --- a/Documentation/Filters/Cache.md +++ b/Documentation/Filters/Cache.md @@ -99,7 +99,7 @@ reached and a new item should be stored, then an older item will be evicted. Note that if `cached_data` is `thread_specific` then this limit will be applied to each cache _separately_. ``` -max_size=1000 +max_count=1000 ``` The default value is 0, which means no limit. @@ -115,7 +115,7 @@ Note that the value of `max_size` must be at least as large as the value of Note that if `cached_data` is `thread_specific` then this limit will be applied to each cache _separately_. ``` -max_count=10000 +max_size=1000 ``` The default value is 0, which means no limit.