search
HomeBackend DevelopmentPHP TutorialPut session into cache (redis), DB

Why should SESSION be saved in cache

 As far as PHP is concerned, the session supported by the language itself is saved to a disk file in the form of a file and saved in a specified folder. The saved path can be set in the configuration file or using the function session_save_path() in the program. , but there are disadvantages to doing so,

The first is to save it to the file system, which is inefficient. As long as the session is used, the specified sessionid will be searched from multiple files, which is very inefficient.

The second is that when using multiple servers, the problem of session loss may occur (actually it is saved on other servers).

 Of course, saving in the cache can solve the above problem. If you use PHP's own session function, you can use the session_set_save_handler() function to easily re-control the session processing process. If you don't use PHP's session series functions, you can write a similar session function yourself. It's also possible. This is the project I'm working on now. It will calculate the hash as the sessionId based on the user's mid and login time. Each time it is requested, The sessionId must be added to be legal (it is not needed when logging in for the first time, the sessionId will be created at this time and returned to the client). This is also very convenient, concise and efficient. Of course, what I am mainly talking about in this article is "manipulating things" in PHP's own SESSION.

SESSION saved in cache

  PHP saves the cache to redis. You can use the configuration file to modify the processing and saving of the session. Of course, you can also use the ini_set() function in the program to modify it. This is very convenient for testing. I will use this here. Method, of course, it is recommended to use configuration files in a production environment.

<span>php
</span><span>ini_set</span>("session.save_handler", "redis"<span>);
</span><span>ini_set</span>("session.save_path", "tcp://localhost:6379"<span>);
</span><span>session_start</span><span>();
</span><span>header</span>("Content-type:text/html;charset=utf-8"<span>);
</span><span>if</span>(<span>isset</span>(<span>$_SESSION</span>['view'<span>])){
    </span><span>$_SESSION</span>['view'] = <span>$_SESSION</span>['view'] + 1<span>;
}</span><span>else</span><span>{
    </span><span>$_SESSION</span>['view'] = 1<span>;
}
</span><span>echo</span> "【view】{<span>$_SESSION</span>['view']}";

Here, set the session.save_handler method to redis, and session.save_path to the address and port of redis. After setting, refresh, and then look back at redis. You will find that the sessionId is generated in redis, and the sessionId is the same as the one requested by the browser.

Isn’t it very convenient? You only need to change the configuration file to save the session in redis. But what I want to talk about here is to use the program to save the session to redis or db. Let’s take a look.

Rewrite the session processing function by yourself through the interface provided by php

Here you can first take a look at the function session_set_save_handler in PHP. PHP5.4 and later can directly implement the SessionHandlerInterface interface, and the code will be more concise. When rewriting, there are mainly the following methods

open(string $savePath, string $sessionName); //open is similar to a constructor and will be called when starting a session, such as after using the session_start() function

close(); //Similar to the destructor of a class, it is called after the write function is called, and will also be executed after session_write_close()

read(string $sessionId); //Called when reading session

write(string $sessionId, string $data); //Called when saving data

destory($sessionId); //When destroying the session (session_destory() or session_regenerate_id()) it will be called

gc($lifeTime); //Garbage cleaning function to clean up expired data

 The main thing is to implement these methods. You can set different specific methods according to different storage drivers. I have implemented mysql database and redis, two drivers for saving sessions. If necessary, you can expand it yourself. Expansion is very convenient and very convenient. easy.

The following is my redis implementation (db is similar to redis, redis code is less, posted here):

I used the interface method, which makes it easier to expand. I wanted to use memcached that day, so just add it directly

<span>php
</span><span>include_once</span> __DIR__."/interfaceSession.php"<span>;
</span><span>/*</span><span>*
 * 以db的方式存储session
 </span><span>*/</span>
<span>class</span> redisSession <span>implements</span><span> interfaceSession{
    </span><span>/*</span><span>*
     * 保存session的数据库表的信息
     </span><span>*/</span>
    <span>private</span> <span>$_options</span> = <span>array</span><span>(
        </span>'handler' => <span>null</span>, <span>//</span><span>数据库连接句柄</span>
        'host' => <span>null</span>,
        'port' => <span>null</span>,
        'lifeTime' => <span>null</span>,<span>
    );

    </span><span>/*</span><span>*
     * 构造函数
     * @param $options 设置信息数组
     </span><span>*/</span>
    <span>public</span> <span>function</span> __construct(<span>$options</span>=<span>array</span><span>()){
        </span><span>if</span>(!<span>class_exists</span>("redis", <span>false</span><span>)){
            </span><span>die</span>("必须安装redis扩展"<span>);
        }
        </span><span>if</span>(!<span>isset</span>(<span>$options</span>['lifeTime']) || <span>$options</span>['lifeTime'] ){
            <span>$options</span>['lifeTime'] = <span>ini_get</span>('session.gc_maxlifetime'<span>);
        }
        </span><span>$this</span>->_options = <span>array_merge</span>(<span>$this</span>->_options, <span>$options</span><span>);
    }

    </span><span>/*</span><span>*
     * 开始使用该驱动的session
     </span><span>*/</span>
    <span>public</span> <span>function</span><span> begin(){
        </span><span>if</span>(<span>$this</span>->_options['host'] === <span>null</span> ||
           <span>$this</span>->_options['port'] === <span>null</span> ||
           <span>$this</span>->_options['lifeTime'] === <span>null</span><span>
        ){
            </span><span>return</span> <span>false</span><span>;
        }
        </span><span>//</span><span>设置session处理函数</span>
        <span>session_set_save_handler</span><span>(
            </span><span>array</span>(<span>$this</span>, 'open'),
            <span>array</span>(<span>$this</span>, 'close'),
            <span>array</span>(<span>$this</span>, 'read'),
            <span>array</span>(<span>$this</span>, 'write'),
            <span>array</span>(<span>$this</span>, 'destory'),
            <span>array</span>(<span>$this</span>, 'gc'<span>)
        );
    }
    </span><span>/*</span><span>*
     * 自动开始回话或者session_start()开始回话后第一个调用的函数
     * 类似于构造函数的作用
     * @param $savePath 默认的保存路径
     * @param $sessionName 默认的参数名,PHPSESSID
     </span><span>*/</span>
    <span>public</span> <span>function</span> open(<span>$savePath</span>, <span>$sessionName</span><span>){
        </span><span>if</span>(<span>is_resource</span>(<span>$this</span>->_options['handler'])) <span>return</span> <span>true</span><span>;
        </span><span>//</span><span>连接redis</span>
        <span>$redisHandle</span> = <span>new</span><span> Redis();
        </span><span>$redisHandle</span>->connect(<span>$this</span>->_options['host'], <span>$this</span>->_options['port'<span>]);
        </span><span>if</span>(!<span>$redisHandle</span><span>){
            </span><span>return</span> <span>false</span><span>;
        }

        </span><span>$this</span>->_options['handler'] = <span>$redisHandle</span><span>;
        </span><span>$this</span>->gc(<span>null</span><span>);
        </span><span>return</span> <span>true</span><span>;

    }

    </span><span>/*</span><span>*
     * 类似于析构函数,在write之后调用或者session_write_close()函数之后调用
     </span><span>*/</span>
    <span>public</span> <span>function</span><span> close(){
        </span><span>return</span> <span>$this</span>->_options['handler']-><span>close();
    }

    </span><span>/*</span><span>*
     * 读取session信息
     * @param $sessionId 通过该Id唯一确定对应的session数据
     * @return session信息/空串
     </span><span>*/</span>
    <span>public</span> <span>function</span> read(<span>$sessionId</span><span>){
        </span><span>return</span> <span>$this</span>->_options['handler']->get(<span>$sessionId</span><span>);
    }

    </span><span>/*</span><span>*
     * 写入或者修改session数据
     * @param $sessionId 要写入数据的session对应的id
     * @param $sessionData 要写入的数据,已经序列化过了
     </span><span>*/</span>
    <span>public</span> <span>function</span> write(<span>$sessionId</span>, <span>$sessionData</span><span>){
        </span><span>return</span> <span>$this</span>->_options['handler']->setex(<span>$sessionId</span>, <span>$this</span>->_options['lifeTime'], <span>$sessionData</span><span>);
    }

    </span><span>/*</span><span>*
     * 主动销毁session会话
     * @param $sessionId 要销毁的会话的唯一id
     </span><span>*/</span>
    <span>public</span> <span>function</span> destory(<span>$sessionId</span><span>){
        </span><span>return</span> <span>$this</span>->_options['handler']->delete(<span>$sessionId</span>) >= 1 ? <span>true</span> : <span>false</span><span>;
    }

    </span><span>/*</span><span>*
     * 清理绘画中的过期数据
     * @param 有效期
     </span><span>*/</span>
    <span>public</span> <span>function</span> gc(<span>$lifeTime</span><span>){
        </span><span>//</span><span>获取所有sessionid,让过期的释放掉</span>
        <span>$this</span>->_options['handler']->keys("*"<span>);
        </span><span>return</span> <span>true</span><span>;
    }

}</span>

Look at the simple factory pattern

<span>class</span><span> session {
    </span><span>/*</span><span>*
     * 驱动程序句柄保存
     </span><span>*/</span>
    <span>private</span> <span>static</span> <span>$_handler</span> = <span>null</span><span>;

    </span><span>/*</span><span>*
     * 创建session驱动程序
     </span><span>*/</span>
    <span>public</span> <span>static</span> <span>function</span> getSession(<span>$type</span>, <span>$options</span><span>){
        </span><span>//</span><span>单例</span>
        <span>if</span>(<span>isset</span>(<span>$handler</span><span>)){
            </span><span>return</span> self::<span>$_handler</span><span>;
        }

        </span><span>switch</span> (<span>$type</span><span>) {
            </span><span>case</span> 'db': <span>//</span><span>数据库驱动session类型</span>
                    <span>include_once</span> __DIR__."/driver/dbSession.php"<span>;
                    </span><span>$handler</span> = <span>new</span> dbSession(<span>$options</span><span>);
                </span><span>break</span><span>;
            
            </span><span>case</span> 'redis': <span>//</span><span>redis驱动session类型</span>
                    <span>include_once</span> __DIR__."/driver/redisSession.php"<span>;
                    </span><span>$handler</span> = <span>new</span> redisSession(<span>$options</span><span>);
                </span><span>break</span><span>;
            </span><span>default</span>:
                    <span>return</span> <span>false</span><span>;
                </span><span>break</span><span>;
        }

        </span><span>return</span> self::<span>$_handler</span> = <span>$handler</span><span>;
    }
}</span>

 Calling is also very simple,

session::getSession('redis',<span>array</span><span>(
        </span>'host' => "localhost",
        'port' => "6379",<span>
    ))</span>-><span>begin();

</span><span>session_start</span>();

 The database version is also very simple to configure. If necessary, you can download the full version and demo here

 The copyright of this article belongs to the author iforever (luluyrt@163.com). Any form of reprinting is prohibited without the author's consent. After reprinting the article, the author and the original text link must be provided in an obvious position on the article page, otherwise the right to pursue legal liability is reserved. .

The above introduces the session into cache (redis) and DB, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
SpringBoot Session怎么设置会话超时SpringBoot Session怎么设置会话超时May 15, 2023 pm 02:37 PM

问题发现springboot项目生产session-out超时问题,描述下问题:在测试环境通过改动application.yaml配置session-out,经过设置不同时间验证session-out配置生效,于是就直接设置了过期时间为8小时发布到了生产环境。然而中午接到客户反应项目过期时间设置较短,半小时不操作就会话过期需要反复登陆。解决处理开发环境:springboot项目内置Tomcat,所以项目中application.yaml配置session-out是生效的。生产环境:生产环境发布是

php session刷新后没有了怎么办php session刷新后没有了怎么办Jan 18, 2023 pm 01:39 PM

php session刷新后没有了的解决办法:1、通过“session_start();”开启session;2、把所有的公共配置写在一个php文件内;3、变量名不能和数组下标相同;4、在phpinfo里面查看session数据的存储路径,并查看该文件目录下的sessio是否保存成功即可。

session php默认失效时间是多少session php默认失效时间是多少Nov 01, 2022 am 09:14 AM

session php默认失效时间是1440秒,也就是24分钟,表示客户端超过24分钟没有刷新,当前session就会失效;如果用户关闭了浏览器,会话就会结束,Session就不存在了。

Springboot2 session设置超时时间无效怎么解决Springboot2 session设置超时时间无效怎么解决May 22, 2023 pm 01:49 PM

问题:今天项目中遇到了一个设置时间超时的问题,按SpringBoot2的application.properties更改一直不生效。解决方案:server.*属性用于控制SpringBoot使用的嵌入式容器。SpringBoot将使用ServletWebServerFactory实例之一创建servlet容器的实例。这些类使用server.*属性来配置受控的servlet容器(tomcat,jetty等)。当应用程序作为war文件部署到Tomcat实例时,server.*属性不适用。它们不适用,

PHP如何在多个文件中正确地读取和写入Session数据PHP如何在多个文件中正确地读取和写入Session数据Mar 23, 2023 am 11:12 AM

当您在使用PHP会话(Session)时,有时会发现Session在一个文件中可以正常读取,但在另一个文件中却无法读取。这可能会让您感到困惑,因为会话数据应该可以在整个应用程序中共享。本文将解释如何在多个文件中正确地读取和写入PHP会话数据。

JavaScript和PHP的cookie之间有哪些区别?JavaScript和PHP的cookie之间有哪些区别?Sep 02, 2023 pm 12:29 PM

JavaScriptCookie使用JavaScriptcookie是记住和跟踪偏好、购买、佣金和其他信息的最有效方法。更好的访问者体验或网站统计所需的信息。PHPCookieCookie是存储在客户端计算机上的文本文件并保留它们用于跟踪目的。PHP透明地支持HTTPcookie。JavaScriptcookie如何工作?您的服务器将一些数据发送到访问者的浏览器cookie的形式。浏览器可以接受cookie。如果存在,它将作为纯文本记录存储在访问者的硬盘上。现在,当访问者到达站点上的另一个页面时

Redis的共享session应用如何实现短信登录Redis的共享session应用如何实现短信登录Jun 03, 2023 pm 03:11 PM

1.基于session实现短信登录1.1短信登录流程图1.2实现发送短信验证码前端请求说明:说明请求方式POST请求路径/user/code请求参数phone(电话号码)返回值无后端接口实现:@Slf4j@ServicepublicclassUserServiceImplextendsServiceImplimplementsIUserService{@OverridepublicResultsendCode(Stringphone,HttpSessionsession){//1.校验手机号if

PHP如何处理微信小程序中的session问题PHP如何处理微信小程序中的session问题Jun 02, 2023 pm 03:40 PM

近年来,微信小程序风靡全球,已经成为了许多企业和个人开发者的首选平台。在小程序的开发中,我们经常会遇到session问题,也就是如何在小程序中保存用户登录状态。这个问题对于网站开发者来说并不陌生,但在小程序中却有些不同。本文将介绍如何使用PHP解决微信小程序中的session问题。一、小程序登录过程概述小程序的登录流程与网站的登录流程类似,分为以下几个步骤:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment