I want to take backup of a particular key in my redis which have multiple keys. My redis has many keys and I don't want to take full backup of my redis data. I have been going through http://redis.io/commands. There I found that there is a command dump by which I can take the dump of a specific key as follows:
redis> dump "myKey"
But is giving output in hexadecimal format in redis console only. Is it possible to store the data for a specific key in a file and later import it to that key?