1

问题就像我想在管道模式下使用文件和 redis-cli 在 redis 中进行大规模插入一样简单。Redis 文档在这里对此进行了解释:http ://redis.io/topics/mass-insert

我的文件只包含这个命令:

HMSET client:1 name "Michael"

当我在我的外壳(Ubuntu Linux)中尝试它时:

cat data.txt | redis-cli --pipe

我收到此错误:

ERR unknown command '$4'
ERR wrong number of arguments for 'echo' command
ERR unknown command '$20'

我看到其他用户也有同样的问题(如何使用 Redis 批量插入?),但我还没有找到好的解决方案。

任何帮助,将不胜感激。

更新:解决方案

最后,对我来说最好的选择是使用用 Python 开发的 redis 客户端。这是一个非常直接的解决方案,关键是我们不需要直接使用/编码 redis 协议。

我选择 redis-py 客户端(https://github.com/andymccurdy/redis-py)。安装后,您可以在 python 脚本中导入其功能。这是我的脚本如何完成这项工作的示例:

import redis

# Connection to 0 database (default in redis)
r = redis.Redis(host="localhost",db=0)

# inserting client hashmaps
r.hmset('client:1', {'name':'John', 'company':'Microsoft'})
r.hmset('client:2', {'name':'James', 'company':'Apple'})

# inserting a list of domains for client 1
r.rpush('client:1:domains','www.microsoft.com','www.msn.com')

#to print values in stdout
print(r.hgetall('client:1'))
4

1 回答 1

1

您的输入文件应该包含 Redis 协议,而不是文本命令。

在此处查看示例:Redis 批量插入

Redis 协议在这里描述: http ://redis.io/topics/protocol

于 2013-09-19T07:30:53.860 回答