I have started playing with redis a week back and now I want to built a simple word meaning
application which uses Redis as a datastore. The application will find a list of meanings
for a given word. I have few questions before I start writing the app :
Is this a good app to use Redis or using RDBMS like mysql is better? I thought it was a good example because I can have structure in redis like
Map <String, List <String>> wordWithMeanings
Can I create a Map <String,List <String>> in redis? If yes how?
Thanks
Shekhar