Disable client-side cache for the current request
(self)
| 60 | self.set_header('access-control-max-age', CACHE_TIME) |
| 61 | |
| 62 | def disable_cache(self): |
| 63 | """Disable client-side cache for the current request""" |
| 64 | self.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0') |
| 65 | |
| 66 | def handle_session_cookie(self): |
| 67 | """Handle JSESSIONID cookie logic""" |