File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ The Cache Component
1010
1111 The Cache component provides an extended `PSR-6 `_ implementation as well as
1212 a `PSR-16 `_ "Simple Cache" implementation for adding cache to your applications.
13- It is designed to have a low overhead and it ships with ready to use adapters
14- for the most common caching backends.
13+ It is designed for performance and resiliency, and ships with ready to use
14+ adapters for the most common caching backends, including proxies for adapting
15+ from/to `Doctrine Cache `_.
1516
1617Installation
1718------------
@@ -189,4 +190,4 @@ Advanced Usage (PSR-6)
189190
190191.. _`PSR-6` : http://www.php-fig.org/psr/psr-6/
191192.. _`PSR-16` : http://www.php-fig.org/psr/psr-16/
192- .. _ Packagist : https://packagist. org/packages/symfony/ cache
193+ .. _ Doctrine Cache : https://www.doctrine-project. org/projects/ cache.html
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ third, and forth parameters::
2727 // until the database table is truncated or its rows are otherwise deleted)
2828 $defaultLifetime = 0,
2929
30- // an array of options for configuring the database connection
30+ // an array of options for configuring the database table and connection
3131 $options = array()
3232 );
3333
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ allowing manual removal of stale cache items::
184184
185185The :ref: `ChainAdapter <component-cache-chain-adapter >` implementation does not directly
186186contain any pruning logic itself. Instead, when calling the chain adapter's
187- :method: `Symfony\\ Component\\ Cache\\ ChainAdapter::prune ` method, the call is delegated to all
187+ :method: `Symfony\\ Component\\ Cache\\ Adapter \\ ChainAdapter::prune ` method, the call is delegated to all
188188its compatible cache adapters (and those that do not implement ``PruneableInterface `` are
189189silently ignored)::
190190
You can’t perform that action at this time.
0 commit comments