du5910 2018-09-02 13:49
浏览 42
已采纳

redis-cli如何对在HILL或位图上执行GET返回的字符串值进行编码?

Suppose I have a bitmap that I have set using the following commands

setbit key 0 1
setbit key 1 1
setbit key 2 0
setbit key 3 1
setbit key 4 1

When I run get on this key from the redis-cli I get the following result: "\xd8"

But when I do it using a go-redis API I get a different result which is this: � @

To get the above result I have used the following code:

package main

import (
    "fmt"

    "github.com/go-redis/redis"
)

func main() {
    client := redis.NewClient(&redis.Options{
        Addr:     "localhost:6379",
        Password: "",
        DB:       0,
    })

    pong, _ := client.Ping().Result()
    fmt.Println(pong)

    client.SetBit("key", 0, 1)
    client.SetBit("key", 1, 1)
    client.SetBit("key", 2, 0)
    client.SetBit("key", 3, 1)
    client.SetBit("key", 4, 1)  

    res := client.Get("bmk").Val()
    fmt.Println(res)

}

I cannot find it anywhere in the redis docs which kind of encoding the cli uses to produce such results. I would like to convert the results to the same format in my go program as well.

Can someone please tell me what kind of encoding this is and how can I convert the result received from the Redis API to the one obtained by the CLI ?

  • 写回答

1条回答 默认 最新

  • donjd86266 2018-09-02 14:54
    关注

    The redis-cli and the Go program get the same result for GET on some key. The difference that you are observing is how the result value is formatted for output.

    The Go program in the question writes the data as is.

    The redis-cli code for encoding output is here. The function uses typical backslash escapes for newlines, quotes, etc and \x<hex number> for other non-printable bytes.

    Use the fmt package "%q" verb to output data in a similar format:

    fmt.Printf("%q
    ", res)
    

    If you need the exact same format, then a translation of the internal Redis function to Go required.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘