Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 565689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:53:54+00:00 2026-05-13T12:53:54+00:00

I have some C++ code where I need to implement cache replacement using LRU

  • 0

I have some C++ code where I need to implement cache replacement using LRU technique.
So far I know two methods to implement LRU cache replacement:

  1. Using timeStamp for each time the cached data is accessed and finally comparing the timeStamps at time of replacement.
  2. Using a stack of cached items and moving them to the top if they are accessed recently, so finally the bottom will contain the LRU Candidate.

So, which of these is better to be used in production code?
Are their any other better methods?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T12:53:54+00:00Added an answer on May 13, 2026 at 12:53 pm

    Recently I implemented a LRU cache using a linked list spread over a hash map.

        /// Typedef for URL/Entry pair
        typedef std::pair< std::string, Entry > EntryPair;
    
        /// Typedef for Cache list
        typedef std::list< EntryPair > CacheList;
    
        /// Typedef for URL-indexed map into the CacheList
        typedef boost::unordered_map< std::string, CacheList::iterator > CacheMap;
    
        /// Cache LRU list
        CacheList mCacheList;
    
        /// Cache map into the list
        CacheMap mCacheMap;
    

    It has the advantage of being O(1) for all important operations.

    The insertion algorithm:

    // create new entry
    Entry iEntry( ... );
    
    // push it to the front;
    mCacheList.push_front( std::make_pair( aURL, iEntry ) );
    
    // add it to the cache map
    mCacheMap[ aURL ] = mCacheList.begin();
    
    // increase count of entries
    mEntries++;
    
    // check if it's time to remove the last element
    if ( mEntries > mMaxEntries )
    {
        // erease from the map the last cache list element
        mCacheMap.erase( mCacheList.back().first );
    
        // erase it from the list
        mCacheList.pop_back();
    
        // decrease count
        mEntries--;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 297k
  • Answers 297k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm not familiar with Java in general, but my XPath… May 13, 2026 at 7:15 pm
  • Editorial Team
    Editorial Team added an answer This could be spam, or it could be someone doing… May 13, 2026 at 7:15 pm
  • Editorial Team
    Editorial Team added an answer If your layers are vector (WFS, KML, GeoRSS etc.) then… May 13, 2026 at 7:15 pm

Related Questions

For learning purpose i intend to start building a 8051 microcontroller emulator. I am
I'm particularly interested in Windows PowerShell , but here's a somewhat more general complaint:
This really, really urks me, so I hope that someone can give me a
I'm lead dev for Bitfighter , and we're working with a mix of Lua
I know a solution would be to use VS 2005 or 2008, but that's

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.