Jamie Krasnoo wrote
I'd like to use Redis as a save handler
this can be achieved
the PHP way :
ini_set('session.save_handler', 'redis');
ini_set('session.save_path', 'tcp://blabla.com:6379?weight=1&timeout=2.5&database=1');
the ZF3 way
'session_config' => array(
'php_save_handler' => 'redis', // "redis" requires PhpRedis extension
'save_path' => 'tcp://127.0.0.1:6379?prefix=ZF_REDIS_SESSION',
You are welcome to update the official documentation
hope this helps