Skip to content

Commit 3b23b5b

Browse files
committed
Updated Readme !
1 parent bbcf514 commit 3b23b5b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ Also a [Drupal 8 Module](https://github.com/PHPSocialNetwork/phpfastcache-drupal
4646
---------------------------
4747
Not a "Traditional" Caching
4848
---------------------------
49-
phpFastCache is not like the traditional caching methods which keep reading and writing to
49+
Phpfastcache is not like the traditional caching methods which keep reading and writing to
5050
files, sqlite or keeping open massive amounts of connections to memcache, redis, mongodb...\
5151
Also, when you use high performances drivers, your miss hits will be drastically reduced.\
5252
Slightly different from the usual caching libraries you will find everywhere on the internet,
53-
the phpFastCache library reduces the I/O and CPU load as much as possible.
53+
the Phpfastcache library reduces the I/O and CPU load as much as possible.
5454

5555
```php
5656
<?php
@@ -259,7 +259,7 @@ Introducing new helpers
259259
---------------------------
260260
:books: As of the V6, PhpFastCache provides some helpers to make your code easier.
261261

262-
- The [ActOnAll Helper](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%CB%96%5D-Act-on-all-instances) to help you to act on multiple instance at once.
262+
- (:warning: Removed in v8, [why ?](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%CB%96%5D-Act-on-all-instances)) ~~The [ActOnAll Helper](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%CB%96%5D-Act-on-all-instances) to help you to act on multiple instance at once.~~
263263
- The [CacheConditional Helper](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%CB%96%5D-Cache-Conditional) to help you to make the basic conditional statement more easier.
264264

265265
#### Important note:
@@ -270,7 +270,7 @@ May more will come in the future, feel free to contribute !
270270
---------------------------
271271
Introducing aggregated cluster support
272272
---------------------------
273-
`//@todo here`
273+
Check out the [WIKI](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV8%CB%96%5D-Aggregated-cache-cluster) to learn how to implement aggregated cache clustering feature.
274274

275275
---------------------------
276276
As Fast To Implement As Opening a Beer

lib/Phpfastcache/Cluster/AggregatorInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ interface AggregatorInterface
3131
* Write on all (no failure allowed),
3232
* Delete on all (no failure allowed)
3333
*
34-
* Conflict on multiple reads: Exception
34+
* Conflict on multiple reads: Keep first found item (but sync the others)
3535
* Cluster size: 2 minimum, unlimited
3636
*/
3737
public const STRATEGY_FULL_REPLICATION = 1;
@@ -40,7 +40,7 @@ interface AggregatorInterface
4040
* Semi replication mechanism
4141
*
4242
* Read first working (but do not synchronize, with partial failure allowed),
43-
* Write on all (with partial failure allowed),
43+
* Write on all (with partial failure allowed)
4444
* Delete on all (with partial failure allowed)
4545
*
4646
* Conflict on multiple reads: Keep first found item

0 commit comments

Comments
 (0)