Skip to content

Remove occurrences of "performant" #10085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/cache/adapters/php_array_cache_adapter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions http_cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 </http_cache/cache_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::

Expand Down