Skip to content
This repository has been archived by the owner on Nov 15, 2020. It is now read-only.

Commit

Permalink
Add doco updtes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Uren committed Feb 21, 2017
1 parent 25083d9 commit 626f6b9
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Note : Increase the default timeout before downloading the archive.

## Flexible Caching Options

Version 4.1.* includes APC(u), Memcache and Memcached caching options. For backwards compatibility if no option
Version 4.1.* includes APC(u), Memcache, Memcached and Redis caching options. For backwards compatibility if no option
is set in the config file then it defaults to APC.

### Using Memcache
Expand Down Expand Up @@ -172,6 +172,21 @@ If you're using cache connection pooling then pass the pool name as follows :
)
);

### Using Redis

From version 4.1.11 we also have Redis as a caching option. Redis caching use
Predis, which you should include via composer. Use a caching config as follows:


$hdconfig['cache'] = array (
'redis' => array (
'scheme' => 'tcp',
'host' => '127.0.0.1',
'port' => 6379
)
);


## Extra Examples ##

Additional examples can be found in the examples.php file.
Expand Down

0 comments on commit 626f6b9

Please sign in to comment.