v1.7.5
1.7.5 (2026-07-24)
Bug Fixes
- cache: clear a post's cache when it is unpublished (43a1a88)
- cache: clear feed caches when a post is published or updated (b04ede8)
- cache: fire millicache_cache_cleared_by_posts on automatic post invalidation (6615c7d)
- engine: accept Vary tokens covered by request keying or inert on GET (53ad7b7), closes #172
- engine: resolve Authorization bucket from redirect and basic-auth channels (7e7ed1b)
- storage: prevent a fatal error when toggling MilliCache alongside MilliCache Pro (1ad4949)
Performance Results
Loading 7.9x faster with MilliCache!
| Metric | Without Cache | With MilliCache | Improvement |
|---|---|---|---|
| Server Response (TTFB) | 55ms | 7ms | 87% faster |
| Page Load (LCP) | 112ms | 60ms | 46% faster |
Server Response is the primary metric for page caching. It measures how fast the server delivers the HTML. MilliCache focuses on serving cached pages instantly, eliminating database queries and PHP processing.
Page Load includes frontend rendering time, which depends on themes, scripts, and assets. Content optimization is outside MilliCache's current scope.
Technical Details
Cache Efficiency
- Database queries: 27 → 0 (100% reduction)
- Response time range: 6ms-73ms (cached) vs 53ms-65ms (uncached)
Cache Generation (First Request)
- Total processing: 53.19ms
- Before template: 25.31ms
- Template rendering: 27.89ms
Test Configuration
- Iterations: 50 (3 warm-up runs discarded)
- Outliers removed: 4
- Timestamp: 2026-07-24T19:31:17.363Z
- Commit: fe54059
Regression Analysis
- Status: PASS
- Performance improved: 7.49x -> 7.87x (+5.1%)
- Threshold: 10% slowdown triggers failure