Changes between Version 4 and Version 5 of Ticket #1738, comment 6
- Timestamp:
- 06/17/20 07:09:06 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1738, comment 6
v4 v5 3 3 4 4 We are using `proxy_cache_background_update` and `proxy_cache_use_stale`. 5 Nginx won't return the stale content / cache when making more than one stale request. 5 Nginx won't return the stale content / cache when making more than one stale request. Occasionally. 6 6 We didn't use Cache-Control header. 7 7 … … 10 10 Request 2: Cache valid, Request delay: 5 ms (HIT)(OK) 11 11 Request 3: Cache invalid, Request delay: 5 ms (STALE)(OK) 12 Request 4 : Cache invalid, Request delay: 500 ms (HIT) (Not Correct, Request should continue returns Stale content until the latest cache is got)12 Request 4 or 5 or more: Cache invalid, Request delay: 500 ms (HIT) (Not Correct, Request should continue returns Stale content until the latest cache is got) 13 13 14 14 Is my understanding correct in Request 4?