ExpiryFolder: Time Based Cache
This can be useful when you want a session time-out for example.
How does it work?
You have to think about boxes and objects moving from boxes to boxes every tick until they reach the last box where they disappear.Let's say you have a time-out of 30 minutes with a tick every 30 seconds.
The ExpiryFolder will create 60 boxes.
Every objects created at about the same time are in the same box.
Every 30 seconds they move to the box n-1.
If an object is accessed, it moves to the top box.
When it reaches the box 0 and a tick is processed, the object is removed.
One of the big challenge is the synchronization. Here is the code:
Here is an example:
private final static int DURATION = 5000; //ms private final static int PRECISION = 1000; //ms private final static String NAME = "TestFolder"; ExpiryStrategy strategy = new ExpiryStrategy(DURATION, PRECISION); ExpiryFolder folder = new ExpiryFolder(NAME, strategy); final String KEY = "something"; final String VAL = "else"; folder.put(KEY, VAL); assertEquals(1, folder.size()); assertEquals(VAL, folder.find(KEY)); // doesn't count as an access assertEquals(VAL, folder.get(KEY));
Note that this code is already used on production for several years.
- Login or register to post comments
- 4007 reads
- Printer-friendly version
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)




Comments
Danny Lee replied on Fri, 2008/07/25 - 9:36am
Doug McCreary replied on Fri, 2008/07/25 - 1:33pm