Skip to content

Commit

Permalink
Merge branch 'v9.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolim4 committed Sep 1, 2024
2 parents 372d62e + d59b319 commit 8cadd6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ The simplicity of abstraction: One class for many backend cache. You don't need
| `Memcache(d)` _(Core)_ | `Mongodb` _([Extension](https://github.com/PHPSocialNetwork/mongodb-extension))_ | | |
| `Solr` _([Extension](https://github.com/PHPSocialNetwork/solr-extension))_ | `Predis` _(Core)_ | | |
| `Sqlite` _(Core)_ | `Ravendb` _([Extension](https://github.com/PHPSocialNetwork/ravendb-extension)) | | |
| `Wincache` _(Core)_ <br>(**Deprecated** as of v9.2, will be removed as of v10) | `Redis`/`RedisCluster` _(Core)_ | | |
| `Zend Disk Cache` _(Core)_ | `Ssdb` _(Core)_ | | |
| ` Wincache` _(Core)_ <br>(**Deprecated** as of v9.2, will be removed as of v10) | `Relay` ([By end of 2024](https://relay.so/)) |
| `Zend Disk Cache` _(Core)_ | `Redis`/`RedisCluster` _(Core)_ | | |
| | `Ssdb` _(Core)_ | | |
| | `Zend Memory Cache` _(Core)_ | | |

\* Driver descriptions available in [DOCS/DRIVERS.md](./docs/DRIVERS.md)
Expand Down Expand Up @@ -311,11 +312,6 @@ echo implode('<br />', $CachedString->get());// Will echo your product list

```

##### :floppy_disk: Legacy support (Without Composer)
~~* See the file examples/withoutComposer.php for more information.~~\
:warning: The legacy autoload will be removed in the next major release :warning:\
Please include Phpfastcache through composer by running `composer require phpfastcache/phpfastcache`.

#### :zap: Step 3: Enjoy ! Your website is now faster than lightning !
For curious developers, there is a lot of other examples available [here](./docs/examples).

Expand Down
3 changes: 3 additions & 0 deletions docs/DRIVERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@
* Redis/Rediscluster
* A very high-performance memory driver using a in-memory data structure storage. More efficient than Predis driver as it is an compiled library.
* RedisCluster use the RedisCluster class with a different driver name but behave slightly differently than Redis driver.
* Relay **(Planned for v9.3.0)**
* A very high-performance memory driver based on a Redis backend
* Relay.so aims to be faster than Redis/Predis using a new php extension. Will be available by the end of 2024.
* Riak **(REMOVED in v8.0.6)**
* A very high-performance NoSQL driver using a key-value pair system.
* Solr **(Added in v9.1)**
Expand Down

0 comments on commit 8cadd6f

Please sign in to comment.