You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# FastFPC
2
-
this extension requres Redis Magento Builtin cache enabled and php_redis php extension installed.
2
+
this extension requires Redis Magento Builtin cache enabled and php_redis php extension installed.
3
3
The **phpredis** extension provides a native PHP API for communicating with the Redis key-value store.
4
4
```
5
5
#RHEL / CentOS
@@ -10,7 +10,7 @@ yum install php-pecl-redis
10
10
11
11
## The Idea behind this Magento 2 FPC performance extension
12
12
13
-
When I developed a Shopware 6based website I noticed fast sub 1ms performance of the FPC cache. I checked the code and it amazed me. It is simple and made a right PHP way! You don't need Varnish to run your FPC cache fast. You need just fast code without reusing the Magento 2 junk core framework.
13
+
When I developed a Shopware 6-based website I noticed fast sub 1ms performance of the FPC cache. I checked the code and it amazed me. It is simple and made a right PHP way! You don't need Varnish to run your FPC cache fast. You need just fast code without reusing the Magento 2 junk core framework.
14
14
15
15
## Installation
16
16
@@ -27,13 +27,13 @@ add it as a first line to app/bootstrap.php or pub/index.php
27
27
28
28
Also if you are using composer to install this stuff your path will be something like : ../vendor/mage/fpc/src/Mage/FPC.php
29
29
30
-
Installation into app folder is preferable. It is not a usless library. It is a part of your busines to keep your site FAST.
30
+
Installation into the app folder is preferable. It is not a useless library. It is a part of your business to keep your site FAST.
31
31
32
32
```
33
33
require "../app/code/Mage/FPC.php";
34
34
```
35
35
36
-
Also this extension will work without this aditional interactions (jsut install and forget) but it will be slower becouse it will load all Magento 2 via autoloader.
36
+
Also, this extension will work without this additional interaction (just install and forget) but it will be slower because it will load all Magento 2 via autoloader.
0 commit comments