diff options
author | 2022-06-17 15:31:16 -0400 | |
---|---|---|
committer | 2022-06-17 15:31:16 -0400 | |
commit | d679f2e7d0a73ce31ba095d3f22d587be6e94bfa (patch) | |
tree | b9ebc50aa6a128bbeede7c70057384acc268d6d7 /plugin | |
parent | 1c3537bdd2bb9210926c1d8b0995fe1538f53360 (diff) | |
download | coredns-d679f2e7d0a73ce31ba095d3f22d587be6e94bfa.tar.gz coredns-d679f2e7d0a73ce31ba095d3f22d587be6e94bfa.tar.zst coredns-d679f2e7d0a73ce31ba095d3f22d587be6e94bfa.zip |
fix 'verify' option name in readme (#5441)
Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/cache/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/cache/README.md b/plugin/cache/README.md index 85a2d1027..647909faf 100644 --- a/plugin/cache/README.md +++ b/plugin/cache/README.md @@ -58,10 +58,10 @@ cache [TTL] [ZONES...] { available as long as it has not been expired for longer than **DURATION** (default 1 hour). By default, the _cache_ plugin will attempt to refresh the cache entry after sending the expired cache entry to the client. The responses have a TTL of 0. **REFRESH_MODE** controls the timing of the expired cache entry refresh. - `verified` will first verify that an entry is still unavailable from the source before sending the expired entry to the client. + `verify` will first verify that an entry is still unavailable from the source before sending the expired entry to the client. `immediate` will immediately send the expired entry to the client before checking to see if the entry is available from the source. **REFRESH_MODE** defaults to `immediate`. Setting this - value to `verified` can lead to increased latency when serving stale responses, but will prevent stale entries + value to `verify` can lead to increased latency when serving stale responses, but will prevent stale entries from ever being served if an updated response can be retrieved from the source. ## Capacity and Eviction |