Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Implementing a Least-Recently-Used(LRU) Cache 
 

In this section, you will learn about the least-recently- used(LRU) cache in Java.

 

Implementing a Least-Recently-Used(LRU) Cache

                         

In this section, you will learn about the least-recently- used(LRU) cache in Java. LRU Cache helps you how to use the buffer and how to limit or fixed the size of buffer and how to manage storing and retrieving process of the buffer which size is limited.

In this section, you can create a LRU(least-recently-used) Cache and manage it efficiently. Here the given program takes a in numeric input to fix the size of the LRU Cache. If your entry exceeds the size of the LRU Cache the the eldest element with key is removed. LRU Cache is implemented through the LinkedHashMap class. LinkedHashMap holds values with unique key. You you store values with a duplicate key then the LinkedHashMap replace the old value of that key with the new value of the key.

Code Description:

This program shows the object keys and values by using the LRU cache. Many methods and APIs which have been used in the following program are explained as follows:

LinkedHashMap:
This is the class of the java.util.*; package. This class is also used for the implementing the doubly linked list which tracks either insertion or access order. The put() method is used for the insertion process to the LinkedHashMap with the value and the unique key regarding the value.

put(Object key, Object value):
This method has been used to add a value with it's unique key in the LRU Cache. This method of the LinkedHashMap class takes two argument in which first is the key and another is the value for the specified key.

Map.Entry:
This interface returns the view of map of collection . The Map.Entry objects are valid only to the duration of the iteration. This is the nested class of the Map class from the java.util.*; package.

e.getKey():
Above method of the Map.Entry class which returns the key corresponding to the value. Here 'e' is the instance of the Map.Entry class.

e.getValue():
Above written is also a method of the Map.Entry class which returns the value corresponding to the key of the index of the LRU Cache. 

Here is the code of program:

import java.util.*;
import java.io.*;

public class LRUCacheExample {
  int num = 0;
  LinkedHashMap<String,String> map;
  public static void main (String[] argsthrows IOException{
    LRUCacheExample lruCache = new LRUCacheExample();
  }

  public LRUCacheExample() throws IOException{
    System.out.print("Please enter the size of the LRU Cache: ");
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    try{
      num = Integer.parseInt(in.readLine());
    }
    catch(NumberFormatException ne){
      System.out.println(ne.getMessage() " is not a legal entry!");
      System.out.println("Please enter a numeric value.");
      System.exit(0);
    }
    map = new LinkedHashMap<String,String>() {
      public boolean removeEldestEntry (Map.Entry<String,String> eldest){
        return size() > num;
      }
    };
    String ch = "N";
    while(!ch.equalsIgnoreCase("Y")){
      System.out.print("Enter key: ");
      String str = in.readLine();
      System.out.print("Enter value: ");
      String str1 = in.readLine();
      map.put (str, str1);
      System.out.print("Do you want to stop the entry(Y/N)?");
      ch = in.readLine();
    }
      
    for (Map.Entry<String,String> e : getAll())
      System.out.println (e.getKey() " : " + e.getValue());
  }

  public synchronized Collection<Map.Entry<String,String>> getAll() {
    return new ArrayList<Map.Entry<String,String>>(map.entrySet());
  }
}

Download this example

                         

» View all related tutorials
Related Tags: c com make this ie example to exam pic top e it complete in as sta m let pi xa

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.