英文:
why datagrip connect redis not correct?
问题
当我在bash中连接到Redis时,Redis中有两个键。
在bash中
当我在Datagrip中连接到Redis时,Redis中没有键。
默认的数据库都是0。
在Datagrip中
在Datagrip中
如何在Datagrip中连接到正确的数据库?
英文:
When I connect to redis in bash, there is two keys in redis.
in bash
When I connect to redis in Datagrip, there is no keys in redis.
The default db is both 0.
in Datagrip
in Datagrip
How do I connect the right db in datagrip?
答案1
得分: 2
你写了 keys*;
。
但是在Redis中,分号不是一个分隔符。
因此,不是使用模式 *
(表示“任何”),而是使用模式 *;
,并且找不到任何内容。
你需要写一个干净的命令:keys *
。
英文:
You wrote keys*;
.
But the semicolon is not a separator in Redis.
As a result, instead of the pattern *
(meaning "any"), the pattern *;
is used and nothing is found.
You need to write a clean command: keys *
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论