PHP store session with couchbase
如何用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 function destroy($session_id);
- public function gc($maxlifetime);
- public function open($save_path, $session_id);
- public function read($session_id);
- public function write($session_id, $session_data);
- }
- }
- /**
- * A reference implementation of a custom Couchbase session handler.
- */
- class CouchbaseSessionHandler implements SessionHandlerInterface
- {
- /**
- * Holds the Couchbase connection.
- */
- protected $_connection = null;
- /**
- * The Couchbase host and port.
- */
- protected $_host = null;
- /**
- * The Couchbase bucket name.
- */
- protected $_bucket = null;
- /**
- * The prefix to be used in Couchbase keynames.
- */
- protected $_keyPrefix = 'session:';
- /**
- * Define a expiration time of 10 minutes.
- */
- protected $_expire = 600;
- /**
- * Set the default configuration params on init.
- */
- public function __construct($host = '127.0.0.1:8091', $bucket = 'default')
- {
- $this->_host = $host;
- $this->_bucket = $bucket;
- }
- /**
- * Open the connection to Couchbase (called by PHP on `session_start()`)
- */
- public function open($savePath, $sessionName)
- {
- $this->_connection = new Couchbase($this->_host, '', '', $this->_bucket);
- return $this->_connection ? true : false;
- }
- /**
- * Close the connection. Called by PHP when the script ends.
- */
- public function close()
- {
- unset($this->_connection);
- return true;
- }
- /**
- * Read data from the session.
- */
- public function read($sessionId)
- {
- $key = $this->_keyPrefix . $sessionId;
- $result = $this->_connection->get($key);
- return $result ? : null;
- }
- /**
- * Write data to the session.
- */
- public function write($sessionId, $sessionData)
- {
- $key = $this->_keyPrefix . $sessionId;
- if (emptyempty($sessionData)) {
- return false;
- }
- $result = $this->_connection->set($key, $sessionData, $this->_expire);
- return $result ? true : false;
- }
- /**
- * Delete data from the session.
- */
- public function destroy($sessionId)
- {
- $key = $this->_keyPrefix . $sessionId;
- $result = $this->_connection->delete($key);
- return $result ? true : false;
- }
- /**
- * Run the garbage collection.
- */
- public function gc($maxLifetime)
- {
- return true;
- }
- }
- //usage example
- define('COUCHBASE_HOST_PORT','xxxxx:8091');
- define('COUCHBASE_BUCKET','session');
- if(class_exists('Couchbase')&&defined('COUCHBASE_HOST_PORT')&&defined('COUCHBASE_BUCKET')){
- $handler = new CouchbaseSessionHandler(COUCHBASE_HOST_PORT,COUCHBASE_BUCKET);
- if(version_compare(PHP_VERSION,'5.4.0')>=0){
- session_set_save_handler($handler,true);
- }else{
- session_set_save_handler(
- array($handler, 'open'),
- array($handler, 'close'),
- array($handler, 'read'),
- array($handler, 'write'),
- array($handler, 'destroy'),
- array($handler, 'gc'));
- }
- }
- session_start();
- 转自 http://www.fushanlang.com/blog/php-store-session-with-couchbase-2302/
PHP store session with couchbase的更多相关文章
- Node.js中的Session,不要觉得简单哦。
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,博客地址为http://www.cnblogs.com/jasonnode/ .学习网站上有对应 ...
- CI框架SESSION重写
这个是我平时用的是 PHP 自己的 Session 机制,是真正的 PHP Session,存储在服务器端,而不是用的 cookie 接口完全兼容于 CI 2.0.x 的 Session 类库,也就是 ...
- PHP超级全局变量——Session 变量
PHP session 变量用于存储有关用户会话的信息,或更改用户会话的设置.Session 变量保存的信息是单一用户的,并且可供应用程序中的所有页面使用. PHP Session 变量 当您运行一个 ...
- APP store 官方统计工具的常见的Q&A
Apple最近在iTunesConnect里最新发布了官方统计工具,提供了现有友盟统计平台和自有统计平台无法统计的数据,具有自己的独有特点,尤其是下面几个最让人头疼的流量分析转化,可以在App Ana ...
- Session fixation--wiki
http://en.wikipedia.org/wiki/Session_fixation In computer network security, session fixation attacks ...
- 关于web会话中的session过期时间的设置
关于web会话中的session过期时间的设置 1.操作系统: 步骤:开始——〉管理工具——〉Internet信息服务(IIS)管理器——〉网站——〉默认网站——〉右键“属性”——〉主目录——〉配置— ...
- 转:cookie和session(二)——php应用
文章来自于:http://blog.csdn.net/half1/article/details/21650211 本文将介绍cookie在session在php中的基本用法. 1.cookie ...
- Asp.Net 禁用cookie后使用session
原文地址:http://www.c-sharpcorner.com/UploadFile/deepak.sharma00/using-cookie-less-session-in-Asp-Net/ H ...
- C#如何设置session过期时间
1.操作系统 步骤:开始——〉管理工具——〉Internet信息服务(IIS)管理器——〉网站——〉默认网站——〉 右键“属性”——〉主目录——〉配置——〉选项——〉启用会话状态——〉会话超时(在 ...
随机推荐
- jsp发布:tomcat+花生壳
1.tomcat/conf/server.xml <Host name="localhost" appBase="webapps" unpackWARs= ...
- jQuery.hasClass() 函数
hasClass() 函数 判断当前选择元素是否有指定的类名 语法 $(selector).hasclass(classname) 返回值 返回值为布尔型(true/false) 如果当前选择对象包含 ...
- c/c++中两颗璀璨的明珠
1.指针: 函数指针做函数参数 回调函数 语法现象 意义 实现什么效果 (1).间接赋值成立的三个条件 a.两个变量 b.建立关联 c. *p-> (2).函数指针做函数参数 a.调用的角度去理 ...
- asp TreeView控件的使用
相对于之前发过一个TreeView控件的使用方法 本次利用js操作,页面无刷新,性能提高 Css编码可能时我的模板页样式被继承下来,导致页面变乱,不需要的可以去掉 前台 <style> . ...
- C语言的总结
在C语言考试的中,我成绩不是很好,其实在学习C语言的时候我没有好好去学过,我知道了是我自己的错误,我不应该抱着侥幸的心里去上课的,我会去好好听课的哦l
- getParameterMap()的返回值为Map<String, String[]>,从其中取得请求参数转为Map<String, String>的方法如下:
直接遍历报错:[Ljava.lang.String;@44739f3f Map<String, String> tempMap = new HashMap<String, Strin ...
- eclipse: The superclass "javax.servlet.http.HttpServlet" was not found 解决方案
解决步骤: 1. 安装Tomcat8.5 Server 2. eclipse 新建Tomcat 8.5 Server 3. 配置build path 添加 Server Runtime 1.右键项目 ...
- API -- java.lang.Integer
java.lang Class Integer static Integer valueOf(int i) Returns an Integer instance representing the s ...
- express+gulp构建项目(四)env环境变量
这里的文件的作用是负责设置env环境变量和日志. index.js try { require('dotenv').load({silent: true}); //dotenv从一个.env文件中读取 ...
- JavaScript中concat()方法
concat(参数) 用于数组之间的连接, arrayObject.concat(arrayX,arrayX,......,arrayX) 如: var a = [1,2,3]; document.w ...