Skip to content

Instantly share code, notes, and snippets.

@marinakr
Forked from arsperger/redis_import_csv.txt
Created September 12, 2019 11:46
Show Gist options
  • Save marinakr/a575620d5c5fcb611ddc840bef5bc0e7 to your computer and use it in GitHub Desktop.
Save marinakr/a575620d5c5fcb611ddc840bef5bc0e7 to your computer and use it in GitHub Desktop.
import csv file into redis with a single command
cat data.csv | awk -F',' '{print " SET \""$1"\" \""$2"\" \n"}' | redis-cli --pipe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment