Changes between Initial Version and Version 1 of Ticket #2563
- Timestamp:
- 11/12/23 16:14:55 (13 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2563 – Description
initial v1 1 1 We have 2 ``` 2 3 {{{ 3 4 proxy_cache_use_stale updating ... 4 ``` 5 }}} 6 5 7 in our proxy configurations, and on some paths, upstream is sending 6 ``` 8 {{{ 7 9 cache-control: no-cache, no-store, must-revalidate 8 10 pragma: no-cache 9 11 expires: 0 10 ``` 12 }}} 11 13 in a 302 response. 12 14 13 It seems that nginx is caching this sometimes, because some clients are receiving 404 and all of those requests are `cache_status=UPDATING`. 15 It seems that nginx is caching this sometimes, because some clients are receiving 404 and all of those requests are 16 {{{ 17 cache_status=UPDATING 18 }}} 19 . 14 20 15 It happens for 1 percent of clients and whenever I try to reproduce this I get `cache_status=EXPIRED`, so I'm not sure how to go further with this. 21 It happens for 1 percent of clients and whenever I try to reproduce this I get 22 {{{ 23 cache_status=EXPIRED 24 }}} 25 , so I'm not sure how to go further with this.