Uses an LRU (Least Recently Used) cache with TTL support for efficient memory management.
The cache uses FNV-1a hashing with collision-resistant algorithms to ensure data integrity.
Example
constcacheOptions: CacheOptions = { enabled:true, ttl:300000, // 5 minutes maxSize:500// Store up to 500 unique queries };
Cache configuration options for API responses.
Uses an LRU (Least Recently Used) cache with TTL support for efficient memory management. The cache uses FNV-1a hashing with collision-resistant algorithms to ensure data integrity.
Example