When using Redis to store the session, is this the step?

Source: Internet
Author: User
Tags autoloader
Use Redis to save the session, that is, to use only session_id, not the actual value in the session?

                //获取session_id                $sid=session_id();                \Predis\Autoloader::register();                $a = new \Predis\Client();                $a->set('sid',$sid);                $a->set('uid','100');

When you get the value

     $sidfrompost=I('post.sid');        \Predis\Autoloader::register();        $a = new \Predis\Client();        $sidfromredis=$a->get('sid');        if($sidfrompost!=$sidfromredis){            $this->ajaxReturn(array("result"=>"非法访问"));           exit;        }else{            $this->ajaxReturn(array("uid"=>$a->get('uid'),"sid"=>$sidfromredis,"session"=>session()));        }        

Reply content:

Use Redis to save the session, that is, to use only session_id, not the actual value in the session?

                //获取session_id                $sid=session_id();                \Predis\Autoloader::register();                $a = new \Predis\Client();                $a->set('sid',$sid);                $a->set('uid','100');

When you get the value

     $sidfrompost=I('post.sid');        \Predis\Autoloader::register();        $a = new \Predis\Client();        $sidfromredis=$a->get('sid');        if($sidfrompost!=$sidfromredis){            $this->ajaxReturn(array("result"=>"非法访问"));           exit;        }else{            $this->ajaxReturn(array("uid"=>$a->get('uid'),"sid"=>$sidfromredis,"session"=>session()));        }        

Can do a set a get support cross-domain, you can get the best, cross-domain words your redis will open the external port, for security please set up Redis login password

In fact, you do not need to ask so many questions, the use of search, I google search "thinkphp session Redis" The first one is CSDN blog article: Portal

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.