Hi, I've run into a problem when trying to connect to Redis through a socket and I am not sure how to tackle it.
When having:
$cache = new Redis( $frontCache, [ "host" => "/var/redis.sock", "auth" => "connection_strict_password", "persistent" => false, ] );
there should be no port defined (no "port" param or "port" => null).
Nevertheless, I see that in https://github.com/phalcon/cphalcon/blob/master/phalcon/cache/backend/redis.zep:83 one forces a default value for the port, if not defined:
if !isset options["port"] { let options["port"] = 6379; }
Hence I am not able to connect to Redis through the socket.
Any hint/idea how to cope with it? Thx!