Changes between Version 2 and Version 3 of Ticket #1738, comment 6
- Timestamp:
- 06/17/20 06:51:12 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1738, comment 6
v2 v3 9 9 Request 1: Missing cache, Request delay: 500 ms (MISS)(OK) 10 10 Request 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) 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) 13 14 Is my understanding correct in Request 4? 15 Sorry for disturbing. 12 16 13 17 … … 16 20 Return 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 17 21 18 JFYI19 upstream returns the following header:20 21 {{{22 HTTP/1.1 200 OK23 Cache-Control: public, max-age=024 Content-Length: 811325 Content-Type: application/javascript; charset=UTF-826 Last-Modified: Wed, 10 Jun 2020 02:54:24 GMT27 Accept-Ranges: bytes28 ETag: W/"1fb1-1729c266f91"29 Vary: Accept-Encoding30 Access-Control-Allow-Origin: *31 X-DNS-Prefetch-Control: off32 X-Frame-Options: SAMEORIGIN33 Strict-Transport-Security: max-age=15552000; includeSubDomains34 X-Download-Options: noopen35 X-Content-Type-Options: nosniff36 X-XSS-Protection: 1; mode=block37 Date: Wed, 17 Jun 2020 02:53:30 GMT38 }}}39 40 41 22 42 23 Regards