
Flex Cache stores full HTML pages for anonymous visitors. On later visits, fast page serving can return that HTML before WordPress fully loads.
advanced-cache.php (only if no other cache plugin already provides it)define( 'WP_CACHE', true ); to wp-config.php (backup is created first)Redis is never turned on by itself. This plugin does not install object-cache.php and does not replace a WordPress object-cache plugin.
No remote calls. CSS and JavaScript load from this plugin only.
Flex Cache stores cached HTML for anonymous pages as files under wp-content/cache/flex-cache/. It does not log visitors, IP addresses, or user agents.
If you turn Redis on, the same HTML is also stored in Redis on a host you configure. Your Redis password (if you set one) is stored only in the WordPress options table via the Settings API. Fast page serving uses a non-executable settings.json in the cache folder (enabled, TTL, host, port — no password). If Redis requires a password before WordPress loads, add define( 'FLEX_CACHE_REDIS_AUTH', 'your-password' ); to wp-config.php yourself. Flex Cache does not send data to FLEX or any third-party service.
Redis is software you or your host run. This plugin does not create a Redis account and does not load redis.io.
advanced-cache.php.