I need a Map (or any collection) that supports time-to-idle for entries and removes them automatically.
I know there is guava MapMaker, but it expires its elements on subsequent read/write operations rather than automatically, by a running thread. Furthermore the expiration capabilities of MapMaker are now moved to CacheBuilder. The thing is, I don't want a cache - I want expiring elements
Is there something ready-to-use? (it's not hard to implement it myself, but it's better to reuse something)