I am going to use phpfastcache-bundle with symfony3. I have found a documentation how to use it with file driver. But docs are poor on other drivers. How can I setup a redis driver with symfony?
Sorry for being late,
Wiki has a page for all options to drivers. You can find options for redis in Host/Authenticating options.
The config for the drivers on the symfony bundle are exactly the same than the library, except that they are yaml-formatted. So, if you want to setup redis:
php_fast_cache:
drivers:
redis:
type: Redis
parameters: ~
Here parameters are by default but you can change it using options from pointed section in wiki.
In case parameters in wiki are not actual you can find all options in vendor folder - vendor\phpfastcache\phpfastcache\src\phpFastCache\Drivers\Redis\Driver.php#driverConnect
.