Skip to content

Commit 01957a9

Browse files
authored
Update README.md
1 parent 0330784 commit 01957a9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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.
33
The **phpredis** extension provides a native PHP API for communicating with the Redis key-value store.
44
```
55
#RHEL / CentOS
@@ -10,7 +10,7 @@ yum install php-pecl-redis
1010

1111
## The Idea behind this Magento 2 FPC performance extension
1212

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.
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.
1414

1515
## Installation
1616

@@ -27,13 +27,13 @@ add it as a first line to app/bootstrap.php or pub/index.php
2727

2828
Also if you are using composer to install this stuff your path will be something like : ../vendor/mage/fpc/src/Mage/FPC.php
2929

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.
3131

3232
```
3333
require "../app/code/Mage/FPC.php";
3434
```
3535

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.
3737

3838
or do next:
3939

0 commit comments

Comments
 (0)