@@ -52,10 +52,11 @@ $cache->save();
5252
5353** The pool instance is created only once.**
5454
55- > The ` CachePoolFactory ` accepts specific parameters for the underlying caching technology.
56- This library uses the [ Koded Simple Cache] [ koded-cache-simple ] . Please see the README in that repository.
55+ > ` CachePool::use() ` accepts specific parameters for the underlying caching technology.
56+ This method uses the [ Koded Simple Cache] [ koded-cache-simple ] package.
57+ Please see the README in that repository for the specific arguments.
5758
58- You can grab the cache client with
59+ You can grab the cache client if you want to use the client directly
5960
6061``` php
6162/** $var Psr\SimpleCache\CacheInterface $client */
@@ -65,7 +66,7 @@ $client = $cache->client();
6566Deferring the items
6667-------------------
6768
68- To postpone the cache items saving, and store all items "at once",
69+ To postpone the saving of the cache items ( store all items "at once") ,
6970you can use the ` saveDeferred() ` method. These cache items are saved when you
7071
7172- execute ` commit() `
@@ -102,4 +103,4 @@ The code is distributed under the terms of [The 3-Clause BSD license](LICENSE).
102103[ psr-6 ] : http://www.php-fig.org/psr/psr-6/
103104[ koded-cache-simple ] : https://github.com/kodedphp/cache-simple#configuration-directives
104105[ Redis extension ] : https://github.com/phpredis/phpredis/blob/develop/INSTALL.markdown
105- [ Memcached extension ] : https://github.com/php-memcached-dev/php-memcached
106+ [ Memcached extension ] : https://github.com/php-memcached-dev/php-memcached
0 commit comments