WRONGTYPE Operation against a key holding the wrong kind of value php(WRONGTYPE 针对持有错误类型值 php 的键的操作)
问题描述
我正在将 Laravel 与 Redis 一起使用.当我尝试通过 get 方法访问密钥时,出现以下错误针对持有错误类型值的密钥的错误类型操作"
Hi I am using Laravel with Redis .When I am trying to access a key by get method then get following error "WRONGTYPE Operation against a key holding the wrong kind of value"
我正在使用以下代码访问键值 -
I am using following code to access the key value -
我使用此代码从 redis 获取数据
i use this code for get data from redis
$values = "l_messages";
$value = $redis->HGETALL($values);
print($value);
推荐答案
Redis 支持 6 种数据类型.您需要知道一个键映射到什么类型的值,至于每个数据类型,检索它的命令是不同的.
Redis supports 6 data types. You need to know what type of value that a key maps to, as for each data type, the command to retrieve it is different.
这里是检索键值的命令:
Here are the commands to retrieve key value:
- 如果值是字符串类型 ->GET
- 如果值是哈希类型 ->HGETALL
- 如果值是列表类型 ->lrange
<开始><end> - 如果值是集合类型 ->成员
- 如果值是排序集类型 ->ZRANGEBYSCORE
<分钟><max> - 如果值是流类型 ->xread count
流
.https://redis.io/commands/xread
使用 TYPE
命令检查一个键的值的类型映射到:
Use the TYPE
command to check the type of value a key is mapping to:
- 输入
这篇关于WRONGTYPE 针对持有错误类型值 php 的键的操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:WRONGTYPE 针对持有错误类型值 php 的键的操作
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01