数据库
首页 > 数据库> > 【thinkphp5操作redis系列教程】哈希类型之hMset

【thinkphp5操作redis系列教程】哈希类型之hMset

作者:互联网

<?php
namespace app\index\controller;
use Redis;
class Index
{
    public function index()
    {
        $redis = new Redis();
        $redis->connect('127.0.0.1', 6379);
        $redis->flushAll();

        /**
         * redis hash是一个string类型的field和value映射表,特别适用于存储对象
         */
        // 批量填充HASH表
        $redis->hMset('h',array('name'=>'rocky','age'=>27));

        $res = $redis->hGetAll('h');
        var_dump($res);
        /**
         *
         */



    }




}

 

标签:dump,0.1,thinkphp5,redis,hMset,res
来源: https://blog.51cto.com/u_14097531/2973129