PHP Memcached 客户端
github.com/boxunphp/memcached
源代码
问题
安装次数: 20
依赖关系: 1
建议者: 0
安全: 0
星星: 0
关注者: 2
分支: 0
公开问题: 0
Requires
Requires (Dev)
Suggests
None
Provides
Conflicts
Replaces
MIT e95c86797cfc34c3714ae76f00af457f07e64e8a
This package is auto-updated.
Last update: 2024-09-09 09:07:25 UTC
<?php $config = array( 'servers' => array( array('host' => '192.168.0.1', 'port' => 11211, 'weight' => 50), array('host' => '192.168.0.2', 'port' => 11211, 'weight' => 50), ), 'connect_timeout' => 1000, // 单位微秒 ); $mc = Memcached::getInstance($config);