PHP使用Redis实现Session共享的实现示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-22 14:53:14 浏览: 评论:0
这篇文章主要介绍了PHP使用Redis实现Session共享的实现示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考,一起跟随小编过来看看吧。
前言
小型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;
- }
- }
Tags: Redis Session
相关文章
- ·php实现redis数据库指定库号迁移(2014-09-10)
- ·redis访问权限控制,密码设置(2014-09-10)
- ·php怎么安装redis扩展?redis安装以及php扩展的介绍(2018-07-20)
- ·laravel项目利用twemproxy部署redis集群的完整步骤(2018-11-07)
- ·PHP+redis实现的悲观锁机制示例(2018-11-14)
- ·PhpRedis与Predis之间的性能比较(实例)(2020-02-04)
- ·Redis分片(分布式缓存)(2020-02-04)
- ·浅谈redis的缓存穿透和缓存失效的预防和解决(2020-04-09)
- ·PHP使用Redis的GEO(地理位置)命令(2020-04-28)
- ·php实现redis数据库指定库号迁移的方法(2021-05-08)
- ·php操作redis缓存方法分享(2021-05-27)
- ·PHP实现操作redis的封装类完整实例(2021-06-26)
- ·PHP+redis实现添加处理投票的方法(2021-06-26)
- ·PHP使用redis实现统计缓存mysql压力的方法(2021-06-26)
- ·PHP使用Redis实现防止大并发下二次写入的方法(2021-08-11)
- ·PHP+Redis 消息队列 实现高并发下注册人数统计的实例(2021-09-01)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)