How can I save and retrieve a map into redis using redigo?
I have a map like this, which I want to save/retrive from redis using redigo: animals := map[string]bool{ "cat": true, "dog": false, "fox": true, } The length of the map may vary. I tried these function: func SetHash(key string, value…