DZone
Performance Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Performance Zone > ExpiryFolder: Time Based Cache

ExpiryFolder: Time Based Cache

Anthony Goubard user avatar by
Anthony Goubard
·
Jul. 25, 08 · Performance Zone · Interview
Like (0)
Save
Tweet
6.53K Views

Join the DZone community and get the full member experience.

Join For Free
I recently blogged about Top ten performance problems and their solutions. Here is a class that can help you when caching. This class is time based. Meaning that unless accessed, the entries will be removed after x minutes.
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:

  • ExpiryFolder.java
  • ExpiryListener.java
  • ExpiryStrategy.java

 

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.

Cache (computing)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • What Emerging Technologies Make Data Centers More Energy Efficient?
  • Event-Driven Microservices?
  • To Shift Right, You Need Observability
  • C++ Creator Bjarne Stroustrup Interview

Comments

Performance Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo