Skip to content

Commit e0223f0

Browse files
committed
Added extension mechanism
1 parent d4a52b3 commit e0223f0

15 files changed

+283
-111
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
##### xx january 2024
33
- __API__
44
- Upgraded Phpfastcache API to `4.3.0` ([see changes](CHANGELOG_API.md))
5+
- __Extensions__ (💡 New in 9.2)
6+
- Created an extension mechanism to allow future driver to be loaded independently, see [README.md](README.md)
7+
- Created first extension for `Couchbasev4` support which will be moved to a [sub-repository](https://github.com/PHPSocialNetwork/couchbasev4-extension).
8+
- **IMPORTANT**: *AS OF V10* the following drivers will be **MOVED** to their own sub-repositories an extension: `Arangodb`, `Couchdb`, `Cassandra`, `Dynamodb`, `Firestore`, `Mongodb`. However `Couchbasev3` will stay in the core for compatibility reason but will be deprecated.
59
- __Events__
610
- EventManager is now scoped to its own poll if retrieved through `ExtendedCacheItemPoolTrait::->getEventManager()`. Global EventManager `EventManager::getInstance()` remains unchanged, see [EVENTS.md](./docs/EVENTS.md).
7-
- `EventManagerInterface::on()` now accepts a single `string $events` or an `array $events`.
11+
- `EventManagerInterface::on()` now also accepts a single `string $events`.
812
- Alias `\Phpfastcache\PhpfastcacheEventManager` of `\Phpfastcache\EventManager` has been added to improve your code import readability.
13+
- Deprecated `\Phpfastcache\Event\EventManagerDispatcherInterface::hasEventManager` to be removed for v10.
914
- __Drivers__
1015
- Implemented #906 // **Added `RedisCluster` driver support**
1116
- Driver `Memstatic` has changed its name to `Memory` for more consistency.
@@ -17,6 +22,8 @@
1722
- Internal: Implemented multiple keys fetch (*if supported by the backend*) to improve the performances behind all `getItems()` calls. Currently only supported in some backends, but it may evolve in the future.
1823
- Internal: Implemented multiple keys delete (*if supported by the backend*) to improve the performances behind all `deleteItems()` calls. Currently only supported in some backends, but it may evolve in the future.
1924
- `\Phpfastcache\CacheContract::get()` now accepts a `\Stringable $cacheKey` argument.
25+
- __Tags__
26+
- Added `\Phpfastcache\Core\Item\TaggableCacheItemInterface::isTagged(): bool`
2027
- __Misc__
2128
- Fixed multiple code typo & updated README.md
2229

CHANGELOG_API.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
- Deprecated `ConfigurationOption::setPreventCacheSlams()` for future removal, use `IOConfigurationOption::setPreventCacheSlams()` instead.
55
- Deprecated `ConfigurationOption::getCacheSlamsTimeout()` for future removal, use `IOConfigurationOption::getCacheSlamsTimeout()` instead.
66
- Deprecated `ConfigurationOption::setCacheSlamsTimeout()` for future removal, use `IOConfigurationOption::setCacheSlamsTimeout()` instead.
7+
- Deprecated `\Phpfastcache\Event\EventManagerDispatcherInterface::hasEventManager` to be removed for v10.
78
- Created `IOConfigurationOption::isPreventCacheSlams()`. This method will **only be available** for `Files, Sqlite, Leveldb` drivers.
89
- Created `IOConfigurationOption::setPreventCacheSlams()`. This method will **only be available** for `Files, Sqlite, Leveldb` drivers.
910
- Created `IOConfigurationOption::getCacheSlamsTimeout()`. This method will **only be available** for `Files, Sqlite, Leveldb` drivers.
1011
- Created `IOConfigurationOption::setCacheSlamsTimeout()`. This method will **only be available** for `Files, Sqlite, Leveldb` drivers.
11-
- Method `EventManagerInterface::on(array|string $events, callable $callback)` now accepts a single `string $events` or an `array $events`.
12+
- Method `EventManagerInterface::on(array|string $events, callable $callback)` now also accepts a single `string $events`.
13+
- Added `\Phpfastcache\Core\Item\TaggableCacheItemInterface::isTagged`.
1214

1315

1416
## 4.2.0

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Contributing to PhpFastCache
22
========================
33

44
Please note that this project is released with a
5-
[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/).
5+
[Contributor Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct/).
66
By participating in this project you agree to abide by its terms.
77

88
Reporting Issues
@@ -16,7 +16,7 @@ resolved in a timely manner.
1616
Contributing policy
1717
-------------------
1818

19-
Our contributing policy is described in our [Coding Guideline](https://github.com/PHPSocialNetwork/phpfastcache/blob/v7/CODING_GUIDELINE.md)
19+
Our contributing policy is described in our [Coding Guideline](https://github.com/PHPSocialNetwork/phpfastcache/blob/master/CODING_GUIDELINE.md)
2020

2121
Developer notes
2222
-------------------
@@ -26,7 +26,7 @@ To run tests follow the steps:
2626
1) Run `./bin/ci/scripts/install_dependencies.sh`
2727
2) Run `./vendor/bin/phpcs lib/ --report=summary`
2828
3) Run `./vendor/bin/phpmd lib/ ansi phpmd.xml`
29-
4) Run `./vendor/bin/phpstan analyse lib/ -l 2 -c phpstan_lite.neon 2>&1`
29+
4) Run `./vendor/bin/phpstan analyse lib/ -c phpstan_lite.neon 2>&1`
3030
5) Run `php -f ./bin/ci/run_tests.php`
3131

3232
If you are on Windows environment simply run the file `quality.bat` located at the root of the project to run the step 2, 3 and 4 in once.
@@ -35,4 +35,4 @@ The last command will run all the unit tests of the project.
3535
If an error appears, fix it then you can submit your pull request.
3636

3737
Some tests will be skipped if you don't have special dependencies installed (Arangodb, Couchbase, Couchdb, Firestore credential and SDK, Dynamodb credential, etc.).\
38-
So don't worry if those tests are skipped as long as they **pass** on the Github and Travis CIs.
38+
So don't worry if those tests are skipped as long as they **pass** on the GitHub and Travis CIs.

EXTENSIONS.MD

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## As of the 9.2 an extension concept has been introduced.
2+
3+
It's pretty but allow Phpfastcache to split up its drivers into sub-repository with a simple additional call to make.
4+
5+
The 9.2 make the beginning of a new external extension: `Couchbasev4`
6+
7+
There's only 2 steps:
8+
9+
1) Add it to your composer: `composer install phpfastcache/couchbasev4-extension`
10+
2) Call the CacheManager: `CacheManager::getInstance('Couchbasev4')`
11+
12+
Be aware that as of the v10 the following drivers will be **MOVED** to their own sub-repositories an extension:
13+
- `Arangodb`
14+
- `Couchdb`
15+
- `Cassandra`
16+
- `Dynamodb`
17+
- `Firestore`
18+
- `Mongodb`
19+
20+
However `Couchbasev3` will stay in the core for compatibility reason but will be **deprecated**.

0 commit comments

Comments
 (0)