Home  >  Article  >  PHP Framework  >  What is thinkphp redis usage?

What is thinkphp redis usage?

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-26 15:59:493308browse

What is thinkphp redis usage?

How to use redis in thinkphp5?

1. Set the application configuration file config.php

What is thinkphp redis usage?

type can be many categories: File, Redis, etc.

What is thinkphp redis usage?

Related recommendations: "ThinkPHP Tutorial"

2.thinkphp5 uses redis

New application/index/ controller/index.php

<?php
namespace app\index\controller;
use think\Controller;
use think\Cache;
class Index extends Controller
{
    public function index()
    {    
        $han = new Cache;
        // halt($han);
        $han->set(&#39;name&#39;,&#39;klc123&#39;);
        $data = $han->get(&#39;name&#39;);
        $this->assign(&#39;data&#39;,$data);
        return view();
    }
}

3. Front-end display

New application/index/view/index.html

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>index/index</title>
</head>
<body>
    {$data}
</body>
</html>

Output:

klc123

PS: When using redis, be sure to enable the redis server.

The above is the detailed content of What is thinkphp redis usage?. For more information, please follow other related articles on the PHP Chinese website!

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