Changes between Version 4 and Version 5 of Ticket #1738, comment 6


Ignore:
Timestamp:
06/17/20 07:09:06 (4 years ago)
Author:
capraynor@…

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1738, comment 6

    v4 v5  
    33
    44We 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.
     5Nginx won't return the stale content / cache when making more than one stale request. Occasionally.
    66We didn't use Cache-Control header.
    77
     
    1010Request 2: Cache valid, Request delay: 5 ms (HIT)(OK)
    1111Request 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)
     12Request 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)
    1313
    1414Is my understanding correct in Request 4?