initial commit
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
# cache-stale-time: Set Appropriate staleTime Based on Data Volatility
|
||||
|
||||
## Priority: CRITICAL
|
||||
|
||||
## Explanation
|
||||
|
||||
`staleTime` determines how long data is considered fresh. The default is 0ms, meaning data is immediately stale and will refetch on every new query mount. Set appropriate staleTime based on how often your data actually changes to reduce unnecessary network requests.
|
||||
|
||||
## Bad Example
|
||||
|
||||
```tsx
|
||||
// Default staleTime of 0 - refetches on every component mount
|
||||
const { data } = useQuery({
|
||||
queryKey: ['user-profile', userId],
|
||||
queryFn: () => fetchUserProfile(userId),
|
||||
// No staleTime set - always considered stale
|
||||
})
|
||||
|
||||
// User profile probably doesn't change every second
|
||||
// This causes unnecessary API calls on navigation
|
||||
|
||||
// Setting same staleTime everywhere regardless of data type
|
||||
const queryClient = new QueryClient({
|
||||
defaultOptions: {
|
||||
queries: {
|
||||
staleTime: 60 * 1000, // 1 minute for everything - too simple
|
||||
},
|
||||
},
|
||||
})
|
||||
```
|
||||
|
||||
## Good Example
|
||||
|
||||
```tsx
|
||||
// Match staleTime to data volatility
|
||||
const { data: profile } = useQuery({
|
||||
queryKey: ['user-profile', userId],
|
||||
queryFn: () => fetchUserProfile(userId),
|
||||
staleTime: 5 * 60 * 1000, // 5 minutes - profile rarely changes
|
||||
})
|
||||
|
||||
const { data: notifications } = useQuery({
|
||||
queryKey: ['notifications'],
|
||||
queryFn: fetchNotifications,
|
||||
staleTime: 30 * 1000, // 30 seconds - changes more frequently
|
||||
})
|
||||
|
||||
const { data: stockPrice } = useQuery({
|
||||
queryKey: ['stock', symbol],
|
||||
queryFn: () => fetchStockPrice(symbol),
|
||||
staleTime: 0, // Real-time data - always refetch
|
||||
})
|
||||
|
||||
// Set sensible defaults, override per-query
|
||||
const queryClient = new QueryClient({
|
||||
defaultOptions: {
|
||||
queries: {
|
||||
staleTime: 60 * 1000, // 1 minute default
|
||||
},
|
||||
},
|
||||
})
|
||||
```
|
||||
|
||||
## Recommended staleTime Values
|
||||
|
||||
| Data Type | staleTime | Rationale |
|
||||
|-----------|-----------|-----------|
|
||||
| Real-time (stocks, live feeds) | 0 | Must always be current |
|
||||
| Frequently changing (notifications) | 30s - 1min | Balance freshness and requests |
|
||||
| User-generated content | 1 - 5min | Changes on user action |
|
||||
| Reference data (categories, config) | 10 - 30min | Rarely changes |
|
||||
| Static content | Infinity | Never changes |
|
||||
|
||||
## Context
|
||||
|
||||
- `staleTime: 0` (default) triggers background refetch on every mount
|
||||
- `staleTime: Infinity` never considers data stale (manual invalidation only)
|
||||
- Stale data is still returned instantly - refetch happens in background
|
||||
- For SSR, set higher staleTime to avoid immediate client refetch
|
||||
- Consider using `queryOptions` factory to centralize staleTime per data type
|
||||
Reference in New Issue
Block a user