1. <small id='bE1tK'></small><noframes id='bE1tK'>

      <legend id='bE1tK'><style id='bE1tK'><dir id='bE1tK'><q id='bE1tK'></q></dir></style></legend>
      <tfoot id='bE1tK'></tfoot>
      <i id='bE1tK'><tr id='bE1tK'><dt id='bE1tK'><q id='bE1tK'><span id='bE1tK'><b id='bE1tK'><form id='bE1tK'><ins id='bE1tK'></ins><ul id='bE1tK'></ul><sub id='bE1tK'></sub></form><legend id='bE1tK'></legend><bdo id='bE1tK'><pre id='bE1tK'><center id='bE1tK'></center></pre></bdo></b><th id='bE1tK'></th></span></q></dt></tr></i><div id='bE1tK'><tfoot id='bE1tK'></tfoot><dl id='bE1tK'><fieldset id='bE1tK'></fieldset></dl></div>
        <bdo id='bE1tK'></bdo><ul id='bE1tK'></ul>

      1. WRONGTYPE 针对持有错误类型值 php 的键的操作

        时间:2023-10-04
        • <bdo id='VTPlV'></bdo><ul id='VTPlV'></ul>

          <tfoot id='VTPlV'></tfoot>

          <small id='VTPlV'></small><noframes id='VTPlV'>

            <legend id='VTPlV'><style id='VTPlV'><dir id='VTPlV'><q id='VTPlV'></q></dir></style></legend>

                • <i id='VTPlV'><tr id='VTPlV'><dt id='VTPlV'><q id='VTPlV'><span id='VTPlV'><b id='VTPlV'><form id='VTPlV'><ins id='VTPlV'></ins><ul id='VTPlV'></ul><sub id='VTPlV'></sub></form><legend id='VTPlV'></legend><bdo id='VTPlV'><pre id='VTPlV'><center id='VTPlV'></center></pre></bdo></b><th id='VTPlV'></th></span></q></dt></tr></i><div id='VTPlV'><tfoot id='VTPlV'></tfoot><dl id='VTPlV'><fieldset id='VTPlV'></fieldset></dl></div>
                    <tbody id='VTPlV'></tbody>

                • 本文介绍了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 的键的操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何让 Laravel 与 AWS 上的 Redis 集群一起工作 下一篇:安装 phpredis MAC OSX

                  相关文章

                  最新文章

                    • <bdo id='h66m6'></bdo><ul id='h66m6'></ul>
                  1. <tfoot id='h66m6'></tfoot>
                    1. <small id='h66m6'></small><noframes id='h66m6'>

                      <legend id='h66m6'><style id='h66m6'><dir id='h66m6'><q id='h66m6'></q></dir></style></legend>
                    2. <i id='h66m6'><tr id='h66m6'><dt id='h66m6'><q id='h66m6'><span id='h66m6'><b id='h66m6'><form id='h66m6'><ins id='h66m6'></ins><ul id='h66m6'></ul><sub id='h66m6'></sub></form><legend id='h66m6'></legend><bdo id='h66m6'><pre id='h66m6'><center id='h66m6'></center></pre></bdo></b><th id='h66m6'></th></span></q></dt></tr></i><div id='h66m6'><tfoot id='h66m6'></tfoot><dl id='h66m6'><fieldset id='h66m6'></fieldset></dl></div>