I want to store some values only for certain period of time in a collection in tomcat java web application.
The scenario is :
value1is added firstvalue2is added 1 minute aftervalue1value3is added just aftervalue2is addedvalue4is added 2 minute aftervalue1is added
This values should be available only for 5 minute time after they added. After 5 minute they should be removed from the list. Every value expires after 5 minute time (after they added) regardless of their last access time.
I have already started to implement this by using a ConcurrentHashMap and ScheduledExecutor.
I could not find a proper in-built cache mechanism for this requirement and if a cache is used it will not remove/expire the values from the list if values are accessed more frequently.
I appreciate if someone can give me a direction or reference to any existing implementation.