]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix layout in the dnsdist Caching Responses guide 8971/head
authorJan Hilberath <jan@hilberath.de>
Wed, 25 Mar 2020 05:55:37 +0000 (14:55 +0900)
committerJan Hilberath <jan@hilberath.de>
Wed, 25 Mar 2020 05:55:37 +0000 (14:55 +0900)
pdns/dnsdistdist/docs/guides/cache.rst

index 167c1503e13c42267ee8762c18740e50d3980fc2..0217ca6057537f7cee62b6b07032962740ff25a2 100644 (file)
@@ -8,7 +8,7 @@ The first step is to define a cache with :func:`newPacketCache`, then to assign
   pc = newPacketCache(10000, {maxTTL=86400, minTTL=0, temporaryFailureTTL=60, staleTTL=60, dontAge=false})
   getPool(""):setCache(pc)
 
- + The first parameter (10000) is the maximum number of entries stored in the cache, and is the only one required. All the other parameters are optional and in seconds, except the last one which is a boolean.
++ The first parameter (10000) is the maximum number of entries stored in the cache, and is the only one required. All the other parameters are optional and in seconds, except the last one which is a boolean.
 
 + The second one (86400) is the maximum lifetime of an entry in the cache.