apicache
apicache copied to clipboard
Browser use strong cache (from disk)
router.get("/", cache("5 minutes"), async function (req, res) {}
Browser will use strong cache (from disk)
This causes a problem if the data has changed in 5 minutes, but the browser keeps using strong caching and will always show the old data
What should I do?