===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-15-
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:16:There are several ways of creating Redis arrays;  they can be pre-defined in redis.ini using `new RedisArray(string $name);`, or created dynamically using `new RedisArray(array $hosts, array $options);`
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-17-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-134-
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:135:When a node is added or removed from a ring, RedisArray instances must be instanciated with a “previous” list of nodes. A single call to `$ra->_rehash()` causes all the keys to be redistributed according to the new list of nodes. Passing a callback function to `_rehash()` makes it possible to track the progress of that operation: the function is called with a node name and a number of keys that will be examined, e.g. `_rehash(function ($host, $count){ ... });`.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-136-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-172-
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:173:* `$ra->_hosts()` → returns a list of hosts for the selected array.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:174:* `$ra->_function()` → returns the name of the function used to extract key parts during consistent hashing.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:175:* `$ra->_target($key)` → returns the host to be used for a certain key.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:176:* `$ra->_instance($host)` → returns a redis instance connected to a specific node; use with `_target` to get a single Redis object.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown:177:* `$ra->_continuum()` → returns a list of points on continuum; may be useful with custom distributor function.
php-redis-5.3.1+4.3.0/redis-4.3.0/arrays.markdown-178-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/liblzf/lzf_d.c-48-# define lzf_movsb(dst, src, len)                \
php-redis-5.3.1+4.3.0/redis-4.3.0/liblzf/lzf_d.c:49:   asm ("rep movsb"                              \
php-redis-5.3.1+4.3.0/redis-4.3.0/liblzf/lzf_d.c-50-        : "=D" (dst), "=S" (src), "=c" (len)     \
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/README.markdown-2773-
php-redis-5.3.1+4.3.0/redis-4.3.0/README.markdown:2774:Two options are available: `withscores => TRUE`, and `limit => array($offset, $count)`
php-redis-5.3.1+4.3.0/redis-4.3.0/README.markdown-2775-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/mkring.sh-27-	for P in $PORTS; do
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/mkring.sh:28:		PID=`lsof -i :$P | tail -1 | cut -f 2 -d " "`
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/mkring.sh-29-		if [ "$PID" != "" ]; then
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php-2-
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php:3:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php:4:require_once(dirname($_SERVER['PHP_SELF'])."/RedisTest.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php:5:require_once(dirname($_SERVER['PHP_SELF'])."/RedisArrayTest.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php:6:require_once(dirname($_SERVER['PHP_SELF'])."/RedisClusterTest.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/TestRedis.php-7-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisArrayTest.php-1-<?php defined('PHPREDIS_TESTRUN') or die("Use TestRedis.php to run tests!\n");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisArrayTest.php:2:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisArrayTest.php-3-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/getSessionData.php-20-} else {
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/getSessionData.php:21:    echo isset($_SESSION['redis_test']) ? $_SESSION['redis_test'] : 'Key redis_test not found';
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/getSessionData.php-22-}
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-20-START_PORT=7000
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh:21:END_PORT=`expr $START_PORT + $NODES`
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-22-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-52-spawnNodes() {
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh:53:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-54-        # Attempt to spawn the node
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-65-    
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh:66:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-67-        redis-cli -p $PORT ping > /dev/null 2>&1
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-87-    TRIBARGS=""
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh:88:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-89-        TRIBARGS="$TRIBARGS $HOST:$PORT"
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-116-stopCluster() {
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh:117:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/make-cluster.sh-118-        verboseRun redis-cli -p $PORT SHUTDOWN NOSAVE > /dev/null 2>&1
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-1-<?php defined('PHPREDIS_TESTRUN') or die("Use TestRedis.php to run tests!\n");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:2:require_once(dirname($_SERVER['PHP_SELF'])."/RedisTest.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-3-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-382-        $this->assertTrue(false === $this->redis->evalsha($scr,Array($str_key), 1));
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:383:        $this->assertTrue(1 === $this->redis->eval($scr,Array($str_key), 1));
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-384-        $this->assertTrue(1 === $this->redis->evalsha($sha,Array($str_key), 1));
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-395-
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:396:        $result = $this->redis->eval($scr,Array($str_key1, $str_key2), 2);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-397-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-411-        $this->redis->multi();
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:412:        $this->redis->eval($scr,Array($str_key1, $str_key2), 2);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-413-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-428-
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:429:        $result = $this->redis->eval($scr,Array($str_key1, $str_key2), 2);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-430-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-443-        $this->redis->multi();
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php:444:        $this->redis->eval($scr,Array($str_key1, $str_key2), 2);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisClusterTest.php-445-        $result = $this->redis->exec();
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-2-
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:3:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4632-        // Now run our script, and check our values against each other
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:4633:        $eval_result = $this->redis->eval($nested_script, Array('{eval-key}-str1', '{eval-key}-str2', '{eval-key}-zset', '{eval-key}-list'), 4);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4634-        $this->assertTrue(is_array($eval_result) && count($this->array_diff_recursive($eval_result, $expected)) == 0);
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4647-            for($i=0;$i<$num_scripts;$i++) {
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:4648:                $this->redis->eval($nested_script, Array('{eval-key}-dummy'), 1);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4649-            }
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4662-        $args_args   = Array('{k}1','{k}2','{k}3','v1','v2','v3');
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:4663:        $args_result = $this->redis->eval($args_script, $args_args, 3);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4664-        $this->assertTrue($args_result === $args_args);
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4667-        $this->redis->setOption(Redis::OPT_PREFIX, 'prefix:');
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:4668:        $args_result = $this->redis->eval($args_script, $args_args, 3);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4669-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4700-        $this->assertTrue(false === $this->redis->evalsha($scr));
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:4701:        $this->assertTrue(1 === $this->redis->eval($scr));
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-4702-        $this->assertTrue(1 === $this->redis->evalsha($sha));
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6145-            $command .= $background ? ' 2>/dev/null > /dev/null &' : ' 2>&1';
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:6146:            exec($command, $output);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6147-            return ($background || (count($output) == 1 && $output[0] == 'SUCCESS')) ? true : false;
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6159-        $command = self::getPhpCommand('getSessionData.php') . escapeshellarg($this->getFullHostPath()) . ' ' . $this->sessionSaveHandler . ' ' . escapeshellarg($sessionId) . ' ' . escapeshellarg($sessionLifetime);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:6160:        exec($command, $output);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6161-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6178-
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:6179:        exec($command, $output);
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6180-
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6203-                /* Only append specific extension directives if PHP hasn't been compiled with what we need statically */
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php:6204:                $result   = shell_exec("$cmd --no-php-ini -m");
php-redis-5.3.1+4.3.0/redis-4.3.0/tests/RedisTest.php-6205-                $redis    = strpos($result, 'redis') !== false;
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-61-    ])
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4:62:    PHP_ADD_INCLUDE($IGBINARY_EXT_DIR)
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-63-  else
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-93-      PHP_ADD_INCLUDE(liblzf)
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4:94:      PHP_ADD_INCLUDE($srcdir/liblzf)
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-95-      PHP_ADD_BUILD_DIR(liblzf)
##############################################
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-125-  dnl # --with-redis -> add include path
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4:126:  dnl PHP_ADD_INCLUDE($REDIS_DIR/include)
php-redis-5.3.1+4.3.0/redis-4.3.0/config.m4-127-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-15-
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:16:There are several ways of creating Redis arrays;  they can be pre-defined in redis.ini using `new RedisArray(string $name);`, or created dynamically using `new RedisArray(array $hosts, array $options);`
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-17-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-134-
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:135:When a node is added or removed from a ring, RedisArray instances must be instantiated with a “previous” list of nodes. A single call to `$ra->_rehash()` causes all the keys to be redistributed according to the new list of nodes. Passing a callback function to `_rehash()` makes it possible to track the progress of that operation: the function is called with a node name and a number of keys that will be examined, e.g. `_rehash(function ($host, $count){ ... });`.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-136-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-172-
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:173:* `$ra->_hosts()` → returns a list of hosts for the selected array.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:174:* `$ra->_function()` → returns the name of the function used to extract key parts during consistent hashing.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:175:* `$ra->_target($key)` → returns the host to be used for a certain key.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:176:* `$ra->_instance($host)` → returns a redis instance connected to a specific node; use with `_target` to get a single Redis object.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown:177:* `$ra->_continuum()` → returns a list of points on continuum; may be useful with custom distributor function.
php-redis-5.3.1+4.3.0/redis-5.3.1/arrays.markdown-178-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/liblzf/lzf_d.c-48-# define lzf_movsb(dst, src, len)                \
php-redis-5.3.1+4.3.0/redis-5.3.1/liblzf/lzf_d.c:49:   asm ("rep movsb"                              \
php-redis-5.3.1+4.3.0/redis-5.3.1/liblzf/lzf_d.c-50-        : "=D" (dst), "=S" (src), "=c" (len)     \
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/README.markdown-2948-
php-redis-5.3.1+4.3.0/redis-5.3.1/README.markdown:2949:Two options are available: `withscores => TRUE`, and `limit => [$offset, $count]`
php-redis-5.3.1+4.3.0/redis-5.3.1/README.markdown-2950-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/mkring.sh-27-	for P in $PORTS; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/mkring.sh:28:		PID=`lsof -i :$P | tail -1 | cut -f 2 -d " "`
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/mkring.sh-29-		if [ "$PID" != "" ]; then
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php-2-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php:3:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php:4:require_once(dirname($_SERVER['PHP_SELF'])."/RedisTest.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php:5:require_once(dirname($_SERVER['PHP_SELF'])."/RedisArrayTest.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php:6:require_once(dirname($_SERVER['PHP_SELF'])."/RedisClusterTest.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php:7:require_once(dirname($_SERVER['PHP_SELF'])."/RedisSentinelTest.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/TestRedis.php-8-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisArrayTest.php-1-<?php defined('PHPREDIS_TESTRUN') or die("Use TestRedis.php to run tests!\n");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisArrayTest.php:2:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisArrayTest.php-3-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/getSessionData.php-20-} else {
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/getSessionData.php:21:    echo isset($_SESSION['redis_test']) ? $_SESSION['redis_test'] : 'Key redis_test not found';
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/getSessionData.php-22-}
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisSentinelTest.php-2-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisSentinelTest.php:3:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisSentinelTest.php-4-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-21-START_PORT=7000
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:22:END_PORT=`expr $START_PORT + $NODES`
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-23-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-58-spawnNodes() {
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:59:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-60-        # Attempt to spawn the node
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-71-    
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:72:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-73-        redis-cli -p $PORT ping > /dev/null 2>&1
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-97-    TRIBARGS=""
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:98:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-99-        TRIBARGS="$TRIBARGS $HOST:$PORT"
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-137-stopCluster() {
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:138:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-139-        verboseRun redis-cli -p $PORT SHUTDOWN NOSAVE > /dev/null 2>&1
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-144-killCluster() {
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh:145:    for PORT in `seq $START_PORT $END_PORT`; do
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/make-cluster.sh-146-        PID=$(ps aux|grep [r]edis-server|grep $PORT|awk '{print $2}')
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-1-<?php defined('PHPREDIS_TESTRUN') or die("Use TestRedis.php to run tests!\n");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:2:require_once(dirname($_SERVER['PHP_SELF'])."/RedisTest.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-3-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-442-        $this->assertTrue(false === $this->redis->evalsha($scr,[$str_key], 1));
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:443:        $this->assertTrue(1 === $this->redis->eval($scr,[$str_key], 1));
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-444-        $this->assertTrue(1 === $this->redis->evalsha($sha,[$str_key], 1));
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-455-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:456:        $result = $this->redis->eval($scr,[$str_key1, $str_key2], 2);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-457-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-471-        $this->redis->multi();
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:472:        $this->redis->eval($scr, [$str_key1, $str_key2], 2);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-473-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-488-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:489:        $result = $this->redis->eval($scr, [$str_key1, $str_key2], 2);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-490-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-503-        $this->redis->multi();
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php:504:        $this->redis->eval($scr, [$str_key1, $str_key2], 2);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisClusterTest.php-505-        $result = $this->redis->exec();
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-2-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:3:require_once(dirname($_SERVER['PHP_SELF'])."/TestSuite.php");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4770-        // Now run our script, and check our values against each other
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:4771:        $eval_result = $this->redis->eval($nested_script, ['{eval-key}-str1', '{eval-key}-str2', '{eval-key}-zset', '{eval-key}-list'], 4);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4772-        $this->assertTrue(is_array($eval_result) && count($this->array_diff_recursive($eval_result, $expected)) == 0);
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4785-            for($i=0;$i<$num_scripts;$i++) {
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:4786:                $this->redis->eval($nested_script, ['{eval-key}-dummy'], 1);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4787-            }
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4800-        $args_args   = ['{k}1','{k}2','{k}3','v1','v2','v3'];
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:4801:        $args_result = $this->redis->eval($args_script, $args_args, 3);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4802-        $this->assertTrue($args_result === $args_args);
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4805-        $this->redis->setOption(Redis::OPT_PREFIX, 'prefix:');
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:4806:        $args_result = $this->redis->eval($args_script, $args_args, 3);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4807-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4838-        $this->assertTrue(false === $this->redis->evalsha($scr));
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:4839:        $this->assertTrue(1 === $this->redis->eval($scr));
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-4840-        $this->assertTrue(1 === $this->redis->evalsha($sha));
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6628-            $command .= $background ? ' 2>/dev/null > /dev/null &' : ' 2>&1';
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:6629:            exec($command, $output);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6630-            return ($background || (count($output) == 1 && $output[0] == 'SUCCESS')) ? true : false;
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6642-        $command = self::getPhpCommand('getSessionData.php') . escapeshellarg($this->getFullHostPath()) . ' ' . $this->sessionSaveHandler . ' ' . escapeshellarg($sessionId) . ' ' . escapeshellarg($sessionLifetime);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:6643:        exec($command, $output);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6644-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6661-
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:6662:        exec($command, $output);
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6663-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6686-                /* Only append specific extension directives if PHP hasn't been compiled with what we need statically */
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php:6687:                $modules   = shell_exec("$cmd --no-php-ini -m");
php-redis-5.3.1+4.3.0/redis-5.3.1/tests/RedisTest.php-6688-
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-99-    ])
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:100:    PHP_ADD_INCLUDE($JSON_EXT_DIR)
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-101-  else
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-140-    ])
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:141:    PHP_ADD_INCLUDE($IGBINARY_EXT_DIR)
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-142-  else
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-173-    AC_MSG_CHECKING([for php msgpack version >= 2.0.3])
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:174:    MSGPACK_VERSION=`$EGREP "define PHP_MSGPACK_VERSION" $msgpack_inc_path/ext/msgpack/php_msgpack.h | $SED -e 's/[[^0-9\.]]//g'`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:175:    if test `echo $MSGPACK_VERSION | $SED -e 's/[[^0-9]]/ /g' | $AWK '{print $1*1000 + $2*100 + $3*10 + $4}'` -lt 2030; then
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-176-      AC_MSG_ERROR([version >= 2.0.3 required])
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-187-    ])
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:188:    PHP_ADD_INCLUDE($MSGPACK_EXT_DIR)
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-189-  else
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-200-
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:201:      LIBLZF_INC=`$PKG_CONFIG liblzf --cflags`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:202:      LIBLZF_LIB=`$PKG_CONFIG liblzf --libs`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:203:      LIBLZF_VER=`$PKG_CONFIG liblzf --modversion`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-204-      AC_MSG_RESULT(found version $LIBLZF_VER)
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-230-      PHP_ADD_INCLUDE(liblzf)
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:231:      PHP_ADD_INCLUDE($srcdir/liblzf)
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-232-      PHP_ADD_BUILD_DIR(liblzf)
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-242-
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:243:      LIBLZ4_VER=`$PKG_CONFIG liblz4 --modversion`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:244:      LIBLZ4_INC=`$PKG_CONFIG liblz4 --cflags`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:245:      LIBLZ4_LIB=`$PKG_CONFIG liblz4 --libs`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-246-      AC_MSG_RESULT(found version $LIBLZ4_VER)
##############################################
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-282-
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:283:      LIBZSTD_VER=`$PKG_CONFIG libzstd --modversion`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-284-      if $PKG_CONFIG libzstd --atleast-version 1.3.0; then
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:285:        LIBZSTD_INC=`$PKG_CONFIG libzstd --cflags`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4:286:        LIBZSTD_LIB=`$PKG_CONFIG libzstd --libs`
php-redis-5.3.1+4.3.0/redis-5.3.1/config.m4-287-        AC_MSG_RESULT(found version $LIBZSTD_VER)