I'm trying to create a map in which the entries time out and get removed after a certain time period.
Basically, <K, V> Map.put(K key, V value, long **time**) - the entry will be put in the map instantly and will expire after time (ms). I do not need to recover the removed entry at any point in the future but I would like to make sure it's no longer in the map.
For example: map.put("foo", "bar", 60l * 1000l) will let this key-value pair live in the map for a minute (60long and 1000long).
Attempt: use a ConcurentMap and implement Map.put(K key, V value, long **time**) via the following:
1. call super.put(key, value)
2. create a thread that sleeps for time (ms)
3. call remove(key) to remove the entry.
Question: please comment/let me know whether this is a good idea in terms of thread-safety, consistency or any flaws in my attempt. If you think there's a better way to accomplish this, please provide any advice.
Edit: Thanks for the replies, memory is not the issue here, I really only care about the short life-span of the entries. Thank you.