【问题标题】:Using Predis, how to SET (i.e. store) a multidimensional associative array?使用 Predis,如何设置(即存储)多维关联数组?
【发布时间】:2018-01-23 23:37:14
【问题描述】:

我是following this guide,开始使用 PHP 中的 Predis。在本指南中,他们提供了 set() 函数来存储键值对:

//sets message to contain "Hello world"
$redis->set(';message';, ';Hello world';);

现在我要使用 predis 缓存的数据是来自 MongoDB 数据库的多维关联数组,它看起来像

allRowsDataArray = array(
  row0 = array(
    key0 = value0,
    key1 = value1,
    ...so on
  ),
  row1 = array(
    field0 = value0,
    field1 = value1,
    ...so on
  ),
  ...so on
)

所以为了在缓存中保存这个数组,当我这样做时

$redis->set('allRowsDataArray', $allRowsDataArray);

我得到这个异常/错误:

Warning: strlen() expects parameter 1 to be string, array given in /var/www/html/testProject/plugins/predis/predis/src/Connection/StreamConnection.php on line 390
Notice: Array to string conversion in /var/www/html/testProject/plugins/predis/predis/src/Connection/StreamConnection.php on line 391
Fatal error: Uncaught Predis\Response\ServerException: ERR Protocol error: invalid bulk length in /var/www/html/testProject/plugins/predis/predis/src/Client.php:370 Stack trace: #0 /var/www/html/testProject/plugins/predis/predis/src/Client.php(335): Predis\Client->onErrorResponse(Object(Predis\Command\StringSet), Object(Predis\Response\Error)) #1 /var/www/html/testProject/plugins/predis/predis/src/Client.php(314): Predis\Client->executeCommand(Object(Predis\Command\StringSet)) #2 /var/www/html/testProject/plugins/predis/index.php(110): Predis\Client->__call('set', Array) #3 {main} thrown in /var/www/html/testProject/plugins/predis/predis/src/Client.php on line 370

所以问题是我错过了什么?我应该如何解决这个问题?

【问题讨论】:

标签: php redis predis


【解决方案1】:

Set 方法期望值是字符串。使用json_encode()保存数据。

$redis->set('allRowsDataArray', json_encode($allRowsDataArray));

并使用json_decode()Redis 检索。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-03-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-26
    • 1970-01-01
    • 2013-09-10
    相关资源
    最近更新 更多