英文: GEOADD command with Redigo 问题 这是我正在尝试的代码,使用Redigo("github.com/garyburd/redigo/redis"):...
conn.flush()不会将所有记录刷新到Redis。
英文: conn.flush() will not flush all record to redis 问题 这是代码: func main() { ... pool := createPool(*r...
调用lua脚本时,使用redigo抛出错误,参数数量错误。
英文: Calling lua script from redigo throwing error wrong number of args 问题 我正在尝试使用redigo在Redis上执行一个Lu...
HMGET:传递参数时返回空结果。
英文: HMGET: Empty result when passing params 问题 使用redigo,我正在尝试使用HMGET命令。我将一个字符串切片作为参数传递给field。但是它不起作用...
redigo和gob如何检索gob数据的切片
英文: redigo and gob how to retrieve slices of gob data 问题 我正在使用"RPUSH"命令将对象推送到我的Redis数据库中。 ...
redigo golang客户端是否支持键空间事件通知?
英文: Does redigo golang client support keyspace event notifications? 问题 我正在使用golang和redigo库原型化一个Redis...
测试使用redigomock进行事务(MULTI)命令的操作。
英文: Test a transaction (MULTI) command with redigomock 问题 在单元测试中,我该如何设置redigomock来测试包含多个命令的MULTI调用? ...
Redis如何使用golang监听1000到10000个列表的更改?
英文: Redis how to listen changes in 1000 to 10,000 lists using golang? 问题 我有1000到10,000个键存储在Redis中,它们...
Convert interface{} into []string in Golang
英文: Convert interface{} into []string in Golang 问题 我是你的中文翻译助手,以下是翻译好的内容: 我是GO语言的新手,我正在尝试从一个返回两个字符串的函...
如何在Golang中更好地编写Redis(redigo) Pubsub的Receive()函数?
英文: How to write better Receive() in Golang for Redis(redigo) Pubsub? 问题 psc := redis.PubSubConn{c} ...
4