redis bulk import using --pipe

Viewed 18344

I'm trying to import one million lines of redis commands, using the --pipe feature.

redis_version:2.8.1

cat file.txt | redis-cli --pipe

This results in the following error:

Error reading from the server: Connection reset by peer

Does anyone know what I'm doing wrong?

file.txt contains, for example,

lpush name joe
lpush name bob

edit: I now see there's probably a special format(?) for using pipe mode - http://redis.io/topics/protocol

6 Answers
Related