goodspb/php-aerospike-admin

dev-master 2015-11-11 03:25 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:35:26 UTC


README

Aerospike 网页 GUI

如何使用

1、确保已安装 Aerospike 服务器和 Aerospike PHP 扩展

2、打开 config.php:

//change the param depend on your Aerospike setting :

aerospike' => array(
	'namespace' => 'test',
    'connection' => array(
        "hosts" => array(
	        array(
	        	"addr" => "127.0.0.1",      //server address
	        	"port" => 3000              //server port
	        )
	    )
    ),
    'connect_timeout' => 500,
    'read_timeout'	=> 500,
    'write_timeout' => 500,
)

3、确保以下目录存在且可写

/Application/Runtime
/upload/

4、享受使用吧