diff --git a/components/cache/adapters/php_array_cache_adapter.rst b/components/cache/adapters/php_array_cache_adapter.rst index 716a0abd75e..22dc93b6a4f 100644 --- a/components/cache/adapters/php_array_cache_adapter.rst +++ b/components/cache/adapters/php_array_cache_adapter.rst @@ -5,7 +5,7 @@ Php Array Cache Adapter ======================= -This adapter is a highly performant way to cache static data (e.g. application configuration) +This adapter is a high performance cache for static data (e.g. application configuration) that is optimized and preloaded into OPcache memory storage:: use Symfony\Component\Cache\Adapter\PhpArrayAdapter; diff --git a/http_cache.rst b/http_cache.rst index 3885f9f3896..0001b357d29 100644 --- a/http_cache.rst +++ b/http_cache.rst @@ -243,9 +243,9 @@ for debugging information about cache hits and misses. The URI of the request is used as the cache key (unless you :doc:`vary `). -This is *super* performant and simple to use. But, cache *invalidation* is not supported. -If your content change, you'll need to wait until your cache expires for the page -to update. +This provides great performance and is simple to use. But, cache *invalidation* +is not supported. If your content change, you'll need to wait until your cache +expires for the page to update. .. tip::