用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dipro-vn/dipro-ai-boost --skill react-query-cache-strategy命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | react-query-cache-strategy |
| description | null |
Category: react-query · Status: 🟢 Active
Khi quản lý cache: thiết kế queryKey, tinh chỉnh staleTime/gcTime, invalidate có chủ đích.
staleTime theo độ "tươi" cần thiết; data tĩnh để dài, data động để ngắn.gcTime đủ để giữ cache khi quay lại; mặc định 5 phút.['posts'] để cover cả list lẫn detail.refetchOnWindowFocus khi cần.export const postKeys = {
all: ['posts'] as const,
lists: () => [...postKeys.all, 'list'] as const,
detail: (id: string) => [...postKeys.all, 'detail', id] as const,
};
qc.invalidateQueries({ queryKey: postKeys.all }); // cover list + detail
Good: key factory, invalidate theo prefix, staleTime theo loại data. Avoid: key string rải rác, invalidate cả app, staleTime đồng loạt 0.