title: "Cache Configuration Reference" description: "Detailed reference for all configuration options available in the Navius caching system" category: reference tags:

  • reference
  • configuration
  • caching
  • redis
  • settings related:
  • ../../guides/caching-strategies.md
  • ../../guides/features/caching.md
  • ../patterns/caching-patterns.md last_updated: March 27, 2025 version: 1.0

Cache Configuration Reference

This document provides detailed information about all configuration options for the Navius caching system.

Overview

Navius provides a flexible and configurable caching system that can be customized to suit different environments and use cases. The cache configuration is defined in the application configuration files.

Configuration Structure

The cache configuration section in your application configuration looks like this:

cache: # Global cache configuration enabled: true default_provider: "memory" default_ttl_seconds: 300 # 5 minutes # Provider-specific configurations providers: - name: "memory" enabled: true type: "moka" capacity: 10000 # items eviction_policy: "LRU" ttl_seconds: 300 # 5 minutes - name: "redis" enabled: true type: "redis" connection_string: "redis://localhost:6379" ttl_seconds: 3600 # 1 hour connection_pool_size: 10 timeout_ms: 500 # Two-tier cache configuration two_tier: enabled: true fast_cache_provider: "memory" slow_cache_provider: "redis" fast_cache_ttl_seconds: 60 # 1 minute slow_cache_ttl_seconds: 3600 # 1 hour promotion_enabled: true

Configuration Options

Global Cache Options

OptionTypeDefaultDescription
enabledbooleantrueEnables or disables the entire caching system
default_providerstring"memory"The name of the default cache provider to use
default_ttl_secondsinteger300Default time-to-live in seconds for cache entries

Provider Configuration

Each provider has the following configuration options:

Common Provider Options

OptionTypeDefaultDescription
namestring(required)Unique identifier for the provider
enabledbooleantrueEnables or disables this provider
typestring(required)Type of provider (e.g., "moka", "redis")
ttl_secondsintegerGlobal defaultDefault TTL for this provider

Memory Provider Options (type: "moka")

OptionTypeDefaultDescription
capacityinteger10000Maximum number of items in the cache
eviction_policystring"LRU"Eviction policy, one of: "LRU", "LFU", "FIFO"
time_to_idle_secondsintegerNoneTime after which an entry is evicted if not accessed
expire_after_access_secondsintegerNoneTime after which an entry is evicted after last access
expire_after_write_secondsintegerNoneTime after which an entry is evicted after creation

Redis Provider Options (type: "redis")

OptionTypeDefaultDescription
connection_stringstring"redis://localhost:6379"Redis connection URI
connection_pool_sizeinteger5Size of the connection pool
timeout_msinteger1000Connection timeout in milliseconds
retry_attemptsinteger3Number of retry attempts for failed operations
retry_delay_msinteger100Delay between retry attempts in milliseconds
cluster_modebooleanfalseEnable Redis cluster mode
sentinel_modebooleanfalseEnable Redis sentinel mode
sentinel_masterstring"mymaster"Name of the sentinel master
usernamestringNoneRedis username (for Redis 6.0+)
passwordstringNoneRedis password
databaseinteger0Redis database index

Two-Tier Cache Configuration

The two-tier cache combines two separate cache providers (typically memory and Redis) into a unified caching system.

OptionTypeDefaultDescription
enabledbooleantrueEnables or disables the two-tier cache
fast_cache_providerstring"memory"The name of the provider to use as the fast cache
slow_cache_providerstring"redis"The name of the provider to use as the slow cache
fast_cache_ttl_secondsinteger60TTL for the fast cache in seconds
slow_cache_ttl_secondsinteger3600TTL for the slow cache in seconds
promotion_enabledbooleantrueEnable automatic promotion from slow to fast cache
promotion_lock_msinteger10Promotion lock timeout in milliseconds

Environment Variables

You can also configure the cache using environment variables. These will override the values in the configuration files.

Environment VariableDescription
NAVIUS_CACHE_ENABLEDEnable/disable the entire cache (true/false)
NAVIUS_CACHE_DEFAULT_PROVIDERThe default cache provider name
NAVIUS_CACHE_DEFAULT_TTLDefault TTL in seconds
NAVIUS_CACHE_MEMORY_ENABLEDEnable/disable the memory cache
NAVIUS_CACHE_MEMORY_CAPACITYMemory cache capacity
NAVIUS_CACHE_REDIS_ENABLEDEnable/disable the Redis cache
NAVIUS_CACHE_REDIS_URLRedis connection URL
NAVIUS_CACHE_REDIS_PASSWORDRedis password
NAVIUS_CACHE_TWO_TIER_ENABLEDEnable/disable the two-tier cache

Configuration Examples

Basic Memory-Only Setup

cache: enabled: true default_provider: "memory" providers: - name: "memory" type: "moka" capacity: 5000

Production Redis Setup

cache: enabled: true default_provider: "redis" providers: - name: "redis" type: "redis" connection_string: "redis://${REDIS_HOST}:${REDIS_PORT}" password: "${REDIS_PASSWORD}" connection_pool_size: 20 timeout_ms: 500

Development Two-Tier Setup

cache: enabled: true default_provider: "two-tier" providers: - name: "memory" type: "moka" capacity: 1000 - name: "redis" type: "redis" connection_string: "redis://localhost:6379" two_tier: enabled: true fast_cache_provider: "memory" slow_cache_provider: "redis" fast_cache_ttl_seconds: 30 slow_cache_ttl_seconds: 300

Disabling Cache for Testing

cache: enabled: false

Reading Cache Configuration in Code

Here's how to access the cache configuration from your code:

#![allow(unused)] fn main() { use navius::core::config::CacheConfig; fn initialize_cache(config: &CacheConfig) { if !config.enabled { println!("Cache is disabled"); return; } println!("Using default provider: {}", config.default_provider); // Access provider-specific configuration if let Some(redis_config) = config.get_provider_config("redis") { println!("Redis connection: {}", redis_config.get_string("connection_string").unwrap()); } // Access two-tier configuration if let Some(two_tier_config) = config.two_tier.as_ref() { if two_tier_config.enabled { println!("Two-tier cache is enabled"); println!("Fast cache TTL: {}s", two_tier_config.fast_cache_ttl_seconds); println!("Slow cache TTL: {}s", two_tier_config.slow_cache_ttl_seconds); } } } }

Dynamic Cache Configuration

Navius supports dynamic cache configuration changes through the configuration management system. When the configuration is updated, the cache system will automatically apply the relevant changes without requiring a server restart.

Changes that can be applied dynamically:

  • Enabling/disabling the cache
  • Changing TTL values
  • Adjusting capacity limits
  • Modifying eviction policies

Changes that require a restart:

  • Adding/removing cache providers
  • Changing connection strings
  • Switching the default provider type