如何用couchbase存储session
有两种常见方式: 1.采用memcache模式连接couchbase 只需两句修改:
ini_set(‘session.save_handler’, ‘memcache’); ini_set(‘session.save_path’, ‘tcp://couchbase_host:9999′);
注意里面的9999是couchbase 里面创建的bucket的对外memcache端口,这种访问方式运行以memcache兼容的模式访问couchbase。 2.采用couchbase扩展添加一个sessionhandler如下:
/**** * php storage session with couchbase * by fushanlang@gmail.com */ /*** * SessionHandlerInterface is a internal interface only for PHP_VERSION>=5.4.0 * so if interface_exists() false we need to define by yourself. */ if (!interface_exists(‘SessionHandlerInterface’)) { interface SessionHandlerInterface { public function close(); public . . . → Read More: PHP store session with couchbase
最新评论