For assets that change frequently, the ________ caching strategy is often more appropriate than cache-first.
- Cache-first
- Cache-only
- Network-first
- Stale-while-revalidate
For assets that change frequently, the network-first caching strategy is often more appropriate than cache-first. Network-first prioritizes fetching the latest version of a resource from the network and uses the cache as a fallback. This is suitable for frequently updated assets like API responses.
Loading...
Related Quiz
- What are the recommended ways for static type checking?
- Using Immutable.js, to check if a specific structure is an immutable data structure, you would use the function ________.
- Which popular React framework is primarily used for Server-Side Rendering?
- One common performance concern when using the Context API for global state is the lack of ________, which can lead to unnecessary re-renders.
- When creating a custom hook, it's a convention to start the hook's name with ________.