cherry-studio/docs/en/references/data/cache-usage.md
fullex b156ee68e0 feat(cache): enhance shared cache functionality and synchronization in main
- Introduced type-safe access methods for shared cache in the Main process, including `getShared`, `setShared`, `hasShared`, and `deleteShared`.
- Implemented `getAllShared` for initializing new Renderer windows with the complete shared cache state.
- Updated IPC communication to support bidirectional synchronization of shared cache between Main and Renderer processes.
- Enhanced cache management with absolute timestamps for TTL, ensuring precise expiration handling across windows.
- Added ready state tracking in Renderer for improved synchronization feedback during initialization.
- Refactored related documentation to reflect new features and usage patterns for shared cache.
2025-12-29 23:56:27 +08:00

8.2 KiB

Cache Usage Guide

This guide covers how to use the Cache system in React components and services.

React Hooks

useCache (Memory Cache)

Memory cache is lost on app restart. Best for temporary computed results.

import { useCache } from '@data/hooks/useCache'

// Basic usage with default value
const [counter, setCounter] = useCache('ui.counter', 0)

// Update the value
setCounter(counter + 1)

// With TTL (30 seconds)
const [searchResults, setSearchResults] = useCache('search.results', [], { ttl: 30000 })

useSharedCache (Cross-Window Cache)

Shared cache syncs across all windows, lost on app restart.

import { useSharedCache } from '@data/hooks/useCache'

// Cross-window state
const [layout, setLayout] = useSharedCache('window.layout', defaultLayout)

// Sidebar state shared between windows
const [sidebarCollapsed, setSidebarCollapsed] = useSharedCache('ui.sidebar.collapsed', false)

usePersistCache (Persistent Cache)

Persist cache survives app restarts via localStorage.

import { usePersistCache } from '@data/hooks/useCache'

// Recent files list (survives restart)
const [recentFiles, setRecentFiles] = usePersistCache('app.recent_files', [])

// Search history
const [searchHistory, setSearchHistory] = usePersistCache('search.history', [])

CacheService Direct Usage

For non-React code or more control, use CacheService directly.

Memory Cache

import { cacheService } from '@data/CacheService'

// Type-safe (schema key)
cacheService.set('temp.calculation', result)
const result = cacheService.get('temp.calculation')

// With TTL (30 seconds)
cacheService.set('temp.calculation', result, 30000)

// Casual (dynamic key, manual type)
cacheService.setCasual<TopicCache>(`topic:${id}`, topicData)
const topic = cacheService.getCasual<TopicCache>(`topic:${id}`)

// Check existence
if (cacheService.has('temp.calculation')) {
  // ...
}

// Delete
cacheService.delete('temp.calculation')
cacheService.deleteCasual(`topic:${id}`)

Shared Cache

// Type-safe (schema key)
cacheService.setShared('window.layout', layoutConfig)
const layout = cacheService.getShared('window.layout')

// Casual (dynamic key)
cacheService.setSharedCasual<WindowState>(`window:${windowId}`, state)
const state = cacheService.getSharedCasual<WindowState>(`window:${windowId}`)

// Delete
cacheService.deleteShared('window.layout')
cacheService.deleteSharedCasual(`window:${windowId}`)

Persist Cache

// Schema keys only (no Casual methods for persist)
cacheService.setPersist('app.recent_files', recentFiles)
const files = cacheService.getPersist('app.recent_files')

// Delete
cacheService.deletePersist('app.recent_files')

Main Process Usage

Main process CacheService provides SharedCache for cross-window state management.

SharedCache in Main Process

import { cacheService } from '@main/data/CacheService'

// Type-safe (schema key) - matches Renderer's type system
cacheService.setShared('window.layout', layoutConfig)
const layout = cacheService.getShared('window.layout')

// With TTL (30 seconds)
cacheService.setShared('temp.state', state, 30000)

// Check existence
if (cacheService.hasShared('window.layout')) {
  // ...
}

// Delete
cacheService.deleteShared('window.layout')

Note: Main CacheService does NOT support Casual methods (getSharedCasual, etc.). Only schema-based type-safe access is available in Main process.

Sync Strategy

  • Renderer → Main: When Renderer calls setShared(), it broadcasts to Main via IPC. Main updates its SharedCache and relays to other windows.
  • Main → Renderer: When Main calls setShared(), it broadcasts to all Renderer windows.
  • New Window Initialization: New windows fetch complete SharedCache state from Main via getAllShared(). Uses Main-priority override strategy for conflicts.

Type-Safe vs Casual Methods

Type-Safe Methods

  • Use predefined keys from cache schema
  • Full auto-completion and type inference
  • Compile-time key validation
// Key 'ui.counter' must exist in schema
const [counter, setCounter] = useCache('ui.counter', 0)

Casual Methods

  • Use dynamically constructed keys
  • Require manual type specification via generics
  • No compile-time key validation
// Dynamic key, must specify type
const topic = cacheService.getCasual<TopicCache>(`topic:${id}`)

When to Use Which

Scenario Method Example
Fixed cache keys Type-safe useCache('ui.counter')
Entity caching by ID Casual getCasual<Topic>(\topic:${id}`)`
Session-based keys Casual setCasual(\session:${sessionId}`)`
UI state Type-safe useSharedCache('window.layout')

Common Patterns

Caching Expensive Computations

function useExpensiveData(input: string) {
  const [cached, setCached] = useCache(`computed:${input}`, null)

  useEffect(() => {
    if (cached === null) {
      const result = expensiveComputation(input)
      setCached(result)
    }
  }, [input, cached, setCached])

  return cached
}

Cross-Window Coordination

// Window A: Update shared state
const [activeFile, setActiveFile] = useSharedCache('editor.activeFile', null)
setActiveFile(selectedFile)

// Window B: Reacts to change automatically
const [activeFile] = useSharedCache('editor.activeFile', null)
// activeFile updates when Window A changes it

Recent Items with Limit

const [recentItems, setRecentItems] = usePersistCache('app.recentItems', [])

const addRecentItem = (item: Item) => {
  setRecentItems(prev => {
    const filtered = prev.filter(i => i.id !== item.id)
    return [item, ...filtered].slice(0, 10) // Keep last 10
  })
}

Cache with Expiration Check

interface CachedData<T> {
  data: T
  timestamp: number
}

function useCachedWithExpiry<T>(key: string, fetcher: () => Promise<T>, maxAge: number) {
  const [cached, setCached] = useCache<CachedData<T> | null>(key, null)
  const [data, setData] = useState<T | null>(cached?.data ?? null)

  useEffect(() => {
    const isExpired = !cached || Date.now() - cached.timestamp > maxAge

    if (isExpired) {
      fetcher().then(result => {
        setCached({ data: result, timestamp: Date.now() })
        setData(result)
      })
    }
  }, [key, maxAge])

  return data
}

Adding New Cache Keys

1. Add to Cache Schema

// packages/shared/data/cache/cacheSchemas.ts
export interface CacheSchema {
  // Existing keys...
  'myFeature.data': MyDataType
}

2. Define Value Type (if complex)

// packages/shared/data/cache/cacheValueTypes.ts
export interface MyDataType {
  items: string[]
  lastUpdated: number
}

3. Use in Code

// Now type-safe
const [data, setData] = useCache('myFeature.data', defaultValue)

Shared Cache Ready State

Renderer CacheService provides ready state tracking for SharedCache initialization sync.

import { cacheService } from '@data/CacheService'

// Check if shared cache is ready
if (cacheService.isSharedCacheReady()) {
  // SharedCache has been synced from Main
}

// Register callback when ready
const unsubscribe = cacheService.onSharedCacheReady(() => {
  // Called immediately if already ready, or when sync completes
  console.log('SharedCache ready!')
})

// Cleanup
unsubscribe()

Behavior notes:

  • getShared() returns undefined before ready (expected behavior)
  • setShared() works immediately and broadcasts to Main (Main updates its cache)
  • Hooks like useSharedCache work normally - they set initial values and update when sync completes
  • Main-priority override: when sync completes, Main's values override local values

Best Practices

  1. Choose the right tier: Memory for temp, Shared for cross-window, Persist for survival
  2. Use TTL for stale data: Prevent serving outdated cached values
  3. Prefer type-safe keys: Add to schema when possible
  4. Clean up dynamic keys: Remove casual cache entries when no longer needed
  5. Consider data size: Persist cache uses localStorage (limited to ~5MB)
  6. Use absolute timestamps for sync: CacheSyncMessage uses expireAt (absolute Unix timestamp) for precise cross-window TTL sync