Rest API - Caching Strategies
You want to ensure a sensitive API response is never stored by browsers or intermediate caches. Which Cache-Control header should you use?
no-store tells browsers and caches not to store the response anywhere.no-cache allows storing but requires revalidation; private allows browser-only caching; public allows shared caching.no-store forbids all storage [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions