redis / riot

🧨 Get data in & out of Redis with RIOT

Home Page:http://redis.github.io/riot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

file-import option insert key-value pair with set command

fabian23test opened this issue · comments

Hi all,

I am trying to use RIOT for a mass upload of data from the CSV file. I have used the following command:

riot file-import --header set --keyspace myKeySpace --keys PhoneNo

the CSV looks like:

"PhoneNo","Name"
"0199000222","Benjamin Friedrich"
"0199000221","Eric Bahr"

and it works. The data structure that is created in Redis has the following format:

key: 0199000222
value: {"PhoneNo":"0199000222","Name":"Benjamin Friedrich"}

key: 0199000221
value: {"PhoneNo":"0199000221","Name":"Erich Bahr"}

However, the structure is not exactly what I am looking for. I would like a more simple structure, something like:

key: 0199000222
value: Benjamin Friedrich

key: 0199000221
value: Eric Bahr

How can I achieve that using the riot tool?

Thanks for your time and consideration.