Skip to content

Instantly share code, notes, and snippets.

@wbotelhos
Created April 8, 2019 16:29
Show Gist options
  • Save wbotelhos/05bd6fbd83e3516a10f67611672af219 to your computer and use it in GitHub Desktop.
Save wbotelhos/05bd6fbd83e3516a10f67611672af219 to your computer and use it in GitHub Desktop.
Populate Redis With Large Data
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