Changes between Version 2 and Version 3 of Ticket #1738, comment 6


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1738, comment 6

    v2 v3  
    99Request 1: Missing cache, Request delay: 500 ms (MISS)(OK)
    1010Request 2: Cache valid, Request delay: 5 ms (HIT)(OK)
    11 Request 3: Cache invalid, Request delay: 500 ms (STALE) (Not Correct, Request delay should be 5 ms since Nginx is returning a stale cache)
     11Request 3: Cache invalid, Request delay: 5 ms (STALE)(OK)
     12Request 4: Cache invalid, Request delay: 500 ms (HIT) (Not Correct, Request should continue returns Stale content until the latest cache is got)
     13
     14Is my understanding correct in Request 4?
     15Sorry for disturbing.
    1216
    1317
     
    1620Return value when executing `uname -a`: Linux dd3-raynor-ubuntu 5.4.0-33-generic #37-Ubuntu SMP Thu May 21 12:53:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
    1721
    18 JFYI
    19 upstream returns the following header:
    20 
    21 {{{
    22 HTTP/1.1 200 OK
    23 Cache-Control: public, max-age=0
    24 Content-Length: 8113
    25 Content-Type: application/javascript; charset=UTF-8
    26 Last-Modified: Wed, 10 Jun 2020 02:54:24 GMT
    27 Accept-Ranges: bytes
    28 ETag: W/"1fb1-1729c266f91"
    29 Vary: Accept-Encoding
    30 Access-Control-Allow-Origin: *
    31 X-DNS-Prefetch-Control: off
    32 X-Frame-Options: SAMEORIGIN
    33 Strict-Transport-Security: max-age=15552000; includeSubDomains
    34 X-Download-Options: noopen
    35 X-Content-Type-Options: nosniff
    36 X-XSS-Protection: 1; mode=block
    37 Date: Wed, 17 Jun 2020 02:53:30 GMT
    38 }}}
    39 
    40 
    4122
    4223Regards