From 23c9c5546e716ec3ea1c3fb086ccc8afa3472385 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Thu, 19 Sep 2013 10:11:38 -0700 Subject: [PATCH] Allow RedisConnectionPool to be used with HHVM's Redis library As of commit 2811e9d, HHVM includes a pure-PHP Redis client library with method-for-method compatibility with phpredis: . RedisConnectionPool appears to work well with it save for the extension_loaded() check. Practically a freebie! Bug: 54158 Change-Id: I3ac12293a51a45e8f6a61a35bff7a3c063e16964 --- includes/clientpool/RedisConnectionPool.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/clientpool/RedisConnectionPool.php b/includes/clientpool/RedisConnectionPool.php index da4621acde..ef71b1826a 100644 --- a/includes/clientpool/RedisConnectionPool.php +++ b/includes/clientpool/RedisConnectionPool.php @@ -1,6 +1,6 @@ connectTimeout = $options['connectTimeout']; $this->persistent = $options['persistent']; -- 2.20.1