File tree 2 files changed +5
-5
lines changed
components/cache/adapters
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ APCu Cache Adapter
10
10
This adapter is a high-performance, shared memory cache. It can increase the
11
11
application performance very significantly because the cache contents are
12
12
stored 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 .
14
14
15
15
.. caution ::
16
16
@@ -46,7 +46,7 @@ parameter::
46
46
47
47
.. tip ::
48
48
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
50
50
under. This means adding a cache item using the CLI will not result in the item
51
51
appearing under FPM. Likewise, deletion of an item using CGI will not result in the
52
52
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::
25
25
26
26
.. note ::
27
27
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
29
29
adapter ensures that the fetched item is saved in all the adapters where it was
30
30
previously missing.
31
31
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
34
34
:class: `Symfony\\ Component\\ Cache\\ Adapter\\ FilesystemAdapter `, respectfully::
35
35
36
36
use Symfony\Component\Cache\Adapter\ApcuAdapter;
You can’t perform that action at this time.
0 commit comments