File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
components/cache/adapters Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ APCu Cache Adapter
1010This adapter is a high-performance, shared memory cache. It can increase the
1111application performance very significantly because the cache contents are
1212stored in the shared memory of your server, a component that is much faster than
13- others, such as the file system .
13+ others, such as the filesystem .
1414
1515.. caution ::
1616
@@ -46,7 +46,7 @@ parameter::
4646
4747.. tip ::
4848
49- Note that this adapters CRUD operations are specific to the PHP SAPI it is running
49+ Note that this adapter's CRUD operations are specific to the PHP SAPI it is running
5050 under. This means adding a cache item using the CLI will not result in the item
5151 appearing under FPM. Likewise, deletion of an item using CGI will not result in the
5252 item being deleted under the CLI.
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ maximum cache lifetime as its second parameter::
2525
2626.. note ::
2727
28- When an item is not found in the first adapters but is found in the next ones, this
28+ When an item is not found in the first adapter but is found in the next ones, this
2929 adapter ensures that the fetched item is saved in all the adapters where it was
3030 previously missing.
3131
32- The following shows how to create a chain adapter instance using the fastest and slowest
33- storage engines, :class: `Symfony\\ Component\\ Cache\\ Adapter\\ ApcuAdapter ` and
32+ The following example shows how to create a chain adapter instance using the fastest and
33+ slowest storage engines, :class: `Symfony\\ Component\\ Cache\\ Adapter\\ ApcuAdapter ` and
3434:class: `Symfony\\ Component\\ Cache\\ Adapter\\ FilesystemAdapter `, respectfully::
3535
3636 use Symfony\Component\Cache\Adapter\ApcuAdapter;
You can’t perform that action at this time.
0 commit comments