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
10
10
11
11
The Cache component provides an extended `PSR-6 `_ implementation as well as
12
12
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 `_.
15
16
16
17
Installation
17
18
------------
@@ -189,4 +190,4 @@ Advanced Usage (PSR-6)
189
190
190
191
.. _`PSR-6` : http://www.php-fig.org/psr/psr-6/
191
192
.. _`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::
27
27
// until the database table is truncated or its rows are otherwise deleted)
28
28
$defaultLifetime = 0,
29
29
30
- // an array of options for configuring the database connection
30
+ // an array of options for configuring the database table and connection
31
31
$options = array()
32
32
);
33
33
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ allowing manual removal of stale cache items::
184
184
185
185
The :ref: `ChainAdapter <component-cache-chain-adapter >` implementation does not directly
186
186
contain 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
188
188
its compatible cache adapters (and those that do not implement ``PruneableInterface `` are
189
189
silently ignored)::
190
190
You can’t perform that action at this time.
0 commit comments