Which way (which Java collection), is the best (easy implementation and secondly efficiency ) to store in servlet context Usernames and their attributes?
I will be having something like this:
Username1 blue
Username2 red
Username2 blue
Username2 black
Username111 blue
Username77 red .. .. ..
A small piece of code as an example would be great. Thank you
EDIT:My attributes will be an array of strings for each Username. My aim is to easily search all the strings that a username has, to see if i found what i was seeking for.