Skip to main content

Overview

FastSkill’s cache management system optimizes performance through intelligent caching of skill metadata and content.

Cache Configuration

Configure cache settings for your specific needs:
config = ServiceConfig(
    cache=CacheConfig(
        metadata_cache_size=2000,
        content_cache_size=500,
        cache_ttl_seconds=3600,
        enable_persistence=True
    )
)

Cache Operations

  • View cache statistics
  • Clear cache when needed
  • Configure cache policies
  • Monitor cache performance
Proper cache management is essential for optimal FastSkill performance in production environments.