phpRedisAdmin php的redis管理工具

 一款不错的php的redmine管理工具

配置文件在根目录下的:config.inc.php文件

<?php

$config = array(
  'servers' => array(
    array(
      'name' => 'local server', // Optional name.
      'host' => '172.17.187.37',
      'port' => 6379,

      // Optional authentication.
      'auth' => '12345' // Warning: The password is sent in plain-text to the redis server.
    ),

    /*array(
      'host' => 'localhost',
      'port' => 6380
    )*/
  ),


  'seperator' => ':',


  // Uncomment to show less information and make phpRedisAdmin fire less commands to the Redis server. Recommended for a really busy Redis server.
  //'faster' => true,


  // Uncomment to enable HTTP authentication
  /*'login' => array(
    // Username => Password
    // Multiple combinations can be used
    'username' => 'password'
  ),*/




  // You can ignore settings below this point.

  'maxkeylen' => 100
);

?>

猜你喜欢

转载自yi5414289.iteye.com/blog/1714305