欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php使用memcache实现多服务器共享session

程序员文章站 2022-06-16 11:14:22
...
  1. [Session]
  2. ; Handler used to store/retrieve data.
  3. session.save_handler = files ; 这个是session的方式,默认的files即可,表示用文件储存。
复制代码

还有两种方式,user和memcache。 user方式指的是自己(也就是用户)定义session的句柄,用于session的存取等,这个可以把session扩展存到数据库里。 memcache方式,需要配置好memcache,还要配置session.save_path。

使用memcache来作PHP 的session.save_handler:

  1. ini_set("session.save_handler", "memcache");
  2. ini_set("session.save_path", "tcp://127.0.0.1:11211,tcp://192.168.1.12:11211");
复制代码

使用memcached 来作PHP 的session.save_handler:

  1. ini_set("session.save_handler","memcached");
  2. ini_set("session.save_path","127.0.0.1:11211");
复制代码

下面介绍,PHP实现多服务器session共享之memcache共享的方法。 例子: 自定义session处理机制。

  1. /* vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker: */
  2. //===========================================
  3. // 程序: Memcache-Based Session Class
  4. // 功能: 基于Memcache存储的 Session 功能类
  5. //===========================================
  6. /**
  7. * 文件: MemcacheSession.inc.php
  8. * 类名: MemcacheSession Class
  9. * 功能: 自主实现基于Memcache存储的 Session 功能
  10. * 描述: 这个类就是实现Session的功能,基本上是通过
  11. * 设置客户端的Cookie来保存SessionID,
  12. * 然后把用户的数据保存在服务器端,最后通过
  13. * Cookie中的Session Id来确定一个数据是否是用户的,
  14. * 然后进行相应的数据操作
  15. *
  16. * 本方式适合Memcache内存方式存储Session数据的方式,
  17. * 同时如果构建分布式的Memcache服务器,
  18. * 能够保存相当多缓存数据,并且适合用户量比较多并发比较大的情况
  19. *
  20. * 注意: 本类必须要求PHP安装了Memcache扩展或者必须有Memcache的PHP API
  21. * 获取Memcache扩展请访问: http://pecl.php.net
  22. */
  23. //设定 SESSION 有效时间,单位是 秒
  24. define('SESS_LIFTTIME', 3600);
  25. //定义memcache配置信息
  26. define('MEMCACHE_HOST', 'localhost');
  27. define('MEMCACHE_PORT', '10000');
  28. if (!defined('MemcacheSession'))
  29. {
  30. define('MemcacheSession', TRUE);
  31. class MemacheSession
  32. {
  33. // {{{ 类成员属性定义
  34. static $mSessSavePath;
  35. static $mSessName;
  36. static $mMemcacheObj;
  37. // }}}
  38. // {{{ 初始化构造函数
  39. /**
  40. * 构造函数
  41. *
  42. * @param string $login_user 登录用户
  43. * @param int $login_type 用户类型
  44. * @param string $login_sess 登录Session值
  45. * @return Esession
  46. */
  47. public function __construct()
  48. {
  49. //我的memcache是以php模块的方式编译进去的,可以直接调用
  50. //如果没有,就请自己包含 Memcache-client.php 文件
  51. if (!class_exists('Memcache') || !function_exists('memcache_connect'))
  52. {
  53. die('Fatal Error:Can not load Memcache extension!');
  54. }
  55. if (!empty(self::$mMemcacheObj) && is_object(self::$mMemcacheObj))
  56. {
  57. return false;
  58. }
  59. self::$mMemcacheObj = new Memcache;
  60. if (!self::$mMemcacheObj->connect(MEMCACHE_HOST , MEMCACHE_PORT))
  61. {
  62. die('Fatal Error: Can not connect to memcache host '. MEMCACHE_HOST .':'. MEMCACHE_PORT);
  63. }
  64. return TRUE;
  65. }
  66. // }}}
  67. /** {{{ sessOpen($pSavePath, $name)
  68. *
  69. * @param String $pSavePath
  70. * @param String $pSessName
  71. *
  72. * @return Bool TRUE/FALSE
  73. */
  74. public function sessOpen($pSavePath = '', $pSessName = '')
  75. {
  76. self::$mSessSavePath = $pSavePath;
  77. self::$mSessName = $pSessName;
  78. return TRUE;
  79. }
  80. // }}}
  81. /** {{{ sessClose()
  82. *
  83. * @param NULL
  84. *
  85. * @return Bool TRUE/FALSE
  86. */
  87. public function sessClose()
  88. {
  89. return TRUE;
  90. }
  91. // }}}
  92. /** {{{ sessRead($wSessId)
  93. *
  94. * @param String $wSessId
  95. *
  96. * @return Bool TRUE/FALSE
  97. */
  98. public function sessRead($wSessId = '')
  99. {
  100. $wData = self::$mMemcacheObj->get($wSessId);
  101. //先读数据,如果没有,就初始化一个
  102. if (!empty($wData))
  103. {
  104. return $wData;
  105. }
  106. else
  107. {
  108. //初始化一条空记录
  109. $ret = self::$mMemcacheObj->set($wSessId, '', 0, SESS_LIFTTIME);
  110. if (TRUE != $ret)
  111. {
  112. die("Fatal Error: Session ID $wSessId init failed!");
  113. return FALSE;
  114. }
  115. return TRUE;
  116. }
  117. }
  118. // }}}
  119. /** {{{ sessWrite($wSessId, $wData)
  120. *
  121. * @param String $wSessId
  122. * @param String $wData
  123. *
  124. * @return Bool TRUE/FALSE
  125. */
  126. public function sessWrite($wSessId = '', $wData = '')
  127. {
  128. $ret = self::$mMemcacheObj->replace($wSessId, $wData, 0, SESS_LIFTTIME);
  129. if (TRUE != $ret)
  130. {
  131. die("Fatal Error: SessionID $wSessId Save data failed!");
  132. return FALSE;
  133. }
  134. return TRUE;
  135. }
  136. // }}}
  137. /** {{{ sessDestroy($wSessId)
  138. *
  139. * @param String $wSessId
  140. *
  141. * @return Bool TRUE/FALSE
  142. */
  143. public function sessDestroy($wSessId = '')
  144. {
  145. self::sessWrite($wSessId);
  146. return FALSE;
  147. }
  148. // }}}
  149. /** {{{ sessGc()
  150. *
  151. * @param NULL
  152. *
  153. * @return Bool TRUE/FALSE
  154. */
  155. public function sessGc()
  156. {
  157. //无需额外回收,memcache有自己的过期回收机制
  158. return TRUE;
  159. }
  160. // }}}
  161. /** {{{ initSess()
  162. *
  163. * @param NULL
  164. *
  165. * @return Bool TRUE/FALSE
  166. */
  167. public function initSess()
  168. {
  169. //不使用 GET/POST 变量方式
  170. ini_set('session.use_trans_sid', 0);
  171. //设置垃圾回收最大生存时间
  172. ini_set('session.gc_maxlifetime', SESS_LIFTTIME);
  173. //使用 COOKIE 保存 SESSION ID 的方式
  174. ini_set('session.use_cookies', 1);
  175. ini_set('session.cookie_path', '/');
  176. $domain = '.imysql.cn';
  177. //多主机共享保存 SESSION ID 的 COOKIE
  178. ini_set('session.cookie_domain', $domain);
  179. //将 session.save_handler 设置为 user,而不是默认的 files
  180. session_module_name('user');
  181. //定义 SESSION 各项操作所对应的方法名:
  182. session_set_save_handler(
  183. array('MemacheSession', 'sessOpen'), //对应于静态方法 My_Sess::open(),下同。
  184. array('MemacheSession', 'sessClose'),
  185. array('MemacheSession', 'sessRead'),
  186. array('MemacheSession', 'sessWrite'),
  187. array('MemacheSession', 'sessDestroy'),
  188. array('MemacheSession', 'sessGc')
  189. );
  190. session_start();
  191. return TRUE;
  192. }
  193. // }}}
  194. }//end class
  195. }//end define
  196. $memSess = new MemacheSession;
  197. $memSess->initSess();
  198. ?>
复制代码

在程序中的头文件中直接包含 MemacheSession.inc.php 即可使用该类。

测试实例。 1,创建一个session

  1. //set_session.php
  2. session_start();
  3. if (!isset($_SESSION['admin'])) {
  4. $_SESSION['TEST'] = 'wan';
  5. }
  6. print $_SESSION['admin'];
  7. print "/n";
  8. print session_id();
  9. ?>
复制代码

2,用sessionid到memcached中查询:

  1. //get_session.php
  2. $mem = new Memcache;
  3. $mem->connect("127.0.0.1", 11211);
  4. var_dump($mem->get('0935216dbc0d721d629f89efb89affa6'));
  5. ?>
复制代码

备注:memcache PECL 未来版本中,可以直接设置 php.ini设定session.save_handler。

比如:

session.save_handler = memcache session.save_path = "tcp://host:port?persistent=1&weight=2&timeout=2&retry_interval=15,tcp://host2:port2"