I want to store netsted HashMap
in Redis
having single key.
For example :
HashMap<String, HashMap<String,String>> map = new HashMap<>();
Please Suggest :
- Is there any way to store the above-mentioned data structure?
- How can we achieve this?
I want to store netsted HashMap
in Redis
having single key.
For example :
HashMap<String, HashMap<String,String>> map = new HashMap<>();
Please Suggest :