Arce 发表于 2021-7-3 17:18:08

【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);
      /**
         *
         */



    }




}

  
页: [1]
查看完整版本: 【thinkphp5操作redis系列教程】哈希类型之hMset