Created
April 8, 2019 16:29
-
-
Save wbotelhos/05bd6fbd83e3516a10f67611672af219 to your computer and use it in GitHub Desktop.
Populate Redis With Large Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
awk -F, 'NR > 1{ print "SET", $0, "true" }' large_data.csv | redis-cli -h redis.amazonaws.com -n 7 --pipe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment