PHP使用Redis实现Session共享的实现示例


Posted in PHP onMay 12, 2019

前言

小型web服务, session数据基本是保存在本地(更多是本地磁盘文件), 但是当部署多台服务, 且需要共享session, 确保每个服务都能共享到同一份session数据.

redis 数据存储在内存中, 性能好, 配合持久化可确保数据完整.

设计方案

1. 通过php自身session配置实现

# 使用 redis 作为存储方案
session.save_handler = redis
session.save_path = "tcp://127.0.0.1:6379"
# 若设置了连接密码, 则使用如下
session.save_path = "tcp://127.0.0.1:6379?auth=密码"

测试代码

<?php
ini_set("session.save_handler", "redis");
ini_set("session.save_path", "tcp://127.0.0.1:6379");

session_start();
echo "<pre>";
$_SESSION['usertest'.rand(1,5)]=1;
var_dump($_SESSION);

echo "</pre>";

输出 ↓

array(2) {
  ["usertest1"]=>
  int(88)
  ["usertest3"]=>
  int(1)
}
usertest1|i:1;usertest3|i:1;

评价

  • 优点: 实现简单, 无需修改php代码
  • 缺点: 配置不支持多样化, 只能应用于简单场景

2. 设置用户自定义会话存储函数

通过 session_set_save_handler() 函数设置用户自定义会话函数.

session_set_save_handler ( callable $open , callable $close , callable $read , callable $write , callable $destroy , callable $gc [, callable $create_sid [, callable $validate_sid [, callable $update_timestamp ]]] ) : bool
  
# >= php5.4
session_set_save_handler ( object $sessionhandler [, bool $register_shutdown = TRUE ] ) : bool

在配置完会话存储函数后, 再执行 session_start() 即可.

具体代码略, 以下提供一份 Memcached 的(来自Symfony框架代码):

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;

/**
 * MemcacheSessionHandler.
 *
 * @author Drak <drak@zikula.org>
 */
class MemcacheSessionHandler implements \SessionHandlerInterface
{
  /**
   * @var \Memcache Memcache driver.
   */
  private $memcache;

  /**
   * @var int Time to live in seconds
   */
  private $ttl;

  /**
   * @var string Key prefix for shared environments.
   */
  private $prefix;

  /**
   * Constructor.
   *
   * List of available options:
   * * prefix: The prefix to use for the memcache keys in order to avoid collision
   * * expiretime: The time to live in seconds
   *
   * @param \Memcache $memcache A \Memcache instance
   * @param array   $options An associative array of Memcache options
   *
   * @throws \InvalidArgumentException When unsupported options are passed
   */
  public function __construct(\Memcache $memcache, array $options = array())
  {
    if ($diff = array_diff(array_keys($options), array('prefix', 'expiretime'))) {
      throw new \InvalidArgumentException(sprintf(
        'The following options are not supported "%s"', implode(', ', $diff)
      ));
    }

    $this->memcache = $memcache;
    $this->ttl = isset($options['expiretime']) ? (int) $options['expiretime'] : 86400;
    $this->prefix = isset($options['prefix']) ? $options['prefix'] : 'sf2s';
  }

  /**
   * {@inheritdoc}
   */
  public function open($savePath, $sessionName)
  {
    return true;
  }

  /**
   * {@inheritdoc}
   */
  public function close()
  {
    return $this->memcache->close();
  }

  /**
   * {@inheritdoc}
   */
  public function read($sessionId)
  {
    return $this->memcache->get($this->prefix.$sessionId) ?: '';
  }

  /**
   * {@inheritdoc}
   */
  public function write($sessionId, $data)
  {
    return $this->memcache->set($this->prefix.$sessionId, $data, 0, time() + $this->ttl);
  }

  /**
   * {@inheritdoc}
   */
  public function destroy($sessionId)
  {
    return $this->memcache->delete($this->prefix.$sessionId);
  }

  /**
   * {@inheritdoc}
   */
  public function gc($maxlifetime)
  {
    // not required here because memcache will auto expire the records anyhow.
    return true;
  }

  /**
   * Return a Memcache instance
   *
   * @return \Memcache
   */
  protected function getMemcache()
  {
    return $this->memcache;
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
PHP 字符串加密函数(在指定时间内加密还原字符串,超时无法还原)
Apr 28 PHP
php expects parameter 1 to be resource, array given 错误
Mar 23 PHP
php中引用符号(&amp;)的使用详解
Nov 13 PHP
PHP类继承 extends使用介绍
Jan 14 PHP
PHP之autoload运行机制实例分析
Aug 28 PHP
Zend Framework教程之Zend_Db_Table用法详解
Mar 21 PHP
zen_cart实现支付前生成订单的方法
May 06 PHP
CentOS下搭建PHP环境与WordPress博客程序的全流程总结
May 07 PHP
全面解析PHP面向对象的三大特征
Jun 10 PHP
使用PHP+MySql实现微信投票功能实例代码
Sep 29 PHP
Laravel第三方包报class not found的解决方法
Oct 13 PHP
浅析PHP中json_encode与json_decode的区别
Jul 15 PHP
如何让PHP编码更加好看利于阅读
May 12 #PHP
Yii2处理密码加密及验证的方法
May 12 #PHP
php和asp语法上的区别总结
May 12 #PHP
Laravel推荐使用的十个辅助函数
May 10 #PHP
PHP下载大文件失败并限制下载速度的实例代码
May 10 #PHP
PHP 7.4 新语法之箭头函数实例详解
May 09 #PHP
PHP文件类型检查及fileinfo模块安装使用详解
May 09 #PHP
You might like
PHP __autoload()方法真的影响性能吗?
2012/03/30 PHP
PHP遍历目录文件的常用方法小结
2017/02/03 PHP
JavaScript入门教程(12) js对象化编程
2009/01/31 Javascript
checkbox勾选判断代码分析
2014/06/11 Javascript
jQuery功能函数详解
2015/02/01 Javascript
jquery UI Datepicker时间控件的使用方法(终结版)
2015/11/07 Javascript
javascript事件处理模型实例说明
2016/05/31 Javascript
Bootstrap学习笔记之js组件(4)
2016/06/12 Javascript
修改ligerui 默认确认按钮的方法
2016/12/27 Javascript
JS中关于正则的巧妙操作
2017/08/31 Javascript
vue2 前端搜索实现示例
2018/02/26 Javascript
jquery 动态遍历select 赋值的实例
2018/09/12 jQuery
vue项目配置使用flow类型检查的步骤
2020/03/18 Javascript
JavaScript交换变量的常用方法小结【4种方法】
2020/05/07 Javascript
python 获取et和excel的版本号
2009/04/09 Python
Python 执行字符串表达式函数(eval exec execfile)
2014/08/11 Python
python执行shell获取硬件参数写入mysql的方法
2014/12/29 Python
pymongo为mongodb数据库添加索引的方法
2015/05/11 Python
将Python代码打包为jar软件的简单方法
2015/08/04 Python
基于python爬虫数据处理(详解)
2017/06/10 Python
Python 实现一行输入多个值的方法
2018/04/21 Python
网易2016研发工程师编程题 奖学金(python)
2019/06/19 Python
Mac PyCharm中的.gitignore 安装设置教程
2020/04/16 Python
解决在keras中使用model.save()函数保存模型失败的问题
2020/05/21 Python
python之随机数函数的实现示例
2020/12/30 Python
CSS实现聊天气泡效果
2020/04/26 HTML / CSS
HTML5的自定义属性data-*详细介绍和JS操作实例
2014/04/10 HTML / CSS
欧舒丹加拿大官网:L’Occitane加拿大
2017/10/29 全球购物
美国名表在线商城:Ashford(支持中文)
2019/09/24 全球购物
华为智利官方商店:Huawei Chile
2020/05/09 全球购物
AssertionError 跟一下那个类是 “is – a”的关系
2012/02/21 面试题
致短跑运动员广播稿
2014/01/09 职场文书
党员违纪检讨书
2014/02/18 职场文书
六一儿童节主持词
2014/03/21 职场文书
Python基础知识之变量的详解
2021/04/14 Python
利用JavaScript写一个简单计算器
2021/11/27 Javascript