Redis Bulk Insert
Redis-cli is getting a new pipe mode especially designed for bulk inserts as described in the documentation:
cat data.txt | redis-cli --pipe
The
redis-cliutility will also make sure to only redirect errors received from the Redis instance to the standard output.
Original title and link: Redis Bulk Insert (©myNoSQL)