Tagged Questions

LRU is a family of caching algorithms, where LRU stands for least recently used.

learn more… | top users | synonyms

11
votes
5answers
1k views

Limiting the size of a python dictionary

I'd like to work with a dict in python, but limit the number of key/value pairs to X. In other words, if the dict is currently storing X key/value pairs and I perform an insertion, I would like one of ...
6
votes
4answers
1k views

How can I make my simple .NET LRU cache faster?

UPDATE: Hey guys thanks for the replies. Last night and tonight I tried a few different approaches and came up with one similar to the one laid out below by Jeff (I had even already done what he ...
5
votes
1answer
256 views

What Does Memcached's LRU Actually Mean?

Memcached says it uses an LRU queue to do eviction (with a few rules based around slab sizes mixed in.) When they say least-recently-used, are they referring to least recently stored or least recently ...
5
votes
5answers
7k views

LRU implementation in production code

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: Using timeStamp for each time the cached data ...
4
votes
6answers
133 views

How to design a latest recently used cache?

How to design a latest recently used cache? Suppose that you have visited some items. You need to design a data structure to hold these items. Each item is associated with the latest visited time. ...
4
votes
3answers
237 views

limit the size of a std::set

I have a short question about the std::set container. Right now I am feeding my set using the pushback function. Of corse the set becomes larger and larger for every push_back. I am only intrested in ...
4
votes
3answers
863 views

LRU cache implementation in Javascript

Java has LinkedHashMap which gets you 99% there to an LRU cache. Is there a Javascript implementation of an LRU cache, preferably from a reputable source, that is: understandable efficient ...
3
votes
3answers
2k views

Question about LRU Cache implementation in Java

The standard example for implementing LRU Cache in Java points to the example depot url http://www.exampledepot.com/egs/java.util/coll_Cache.html How is removeEldestEntry called by default after just ...
2
votes
1answer
151 views

Android LruCache (Android 3.1) thread safety

Is the new Android class LruCache thread safe? The java doc says: This class is thread-safe. Perform multiple cache operations atomically by synchronizing on the cache: synchronized (cache) { ...
2
votes
1answer
318 views

C++ Best container for really simple LRU cache

I need to implement a really simple LRU cache which stores memory addresses. The count of these addresses is fixed (at runtime). I'm only interested in the last-recently used address (I don't care ...
2
votes
7answers
2k views

Least Recently Used cache using C++

I am trying to implement LRU Cache using C++ . I would like to know what is the best design for implementing them. I know LRU should provide find(), add an element and remove an element. The remove ...
2
votes
2answers
177 views

How can I delete LRU folders until 5GB free space is available

Given a folder \localhost\c$\work\ I'd like to run a powershell script every 15 minutes that ensures 5gb of free space is available. If < 5gb is available, remove the least recently used ...
1
vote
1answer
101 views

LinkedHashMap in Perl

Is there some data structure in Perl like LinkedHashMap in java? Or something LRU data structure in Perl Update:@TLP Basically I'd like to have Hashtable data structure but also I can keep the ...
1
vote
1answer
91 views

How can I implement an expiring LRU cache in elisp?

I have data that consists of the following three components: a_path a_key a_value =f(a_path, a_key) a_value is expensive to calculate, so I want to calculate it infrequently. In an ideal world, ...
1
vote
1answer
219 views

How does the lazy expiration mechanism in memcached operate?

(First of all, my English is not very good, please) As we know, memcached provides lazy expiration, and "replaces" LRU data in its slabs, however I'm not very clear how it does this. For example, if ...
1
vote
1answer
293 views

Refreshing a LRU cache

I am implementing a cache using a map extended from LinkedHashMap (so I can implement removeEldestEntry). The old implementation used a regular hash map, refreshed at a set interval. I was wondering ...
1
vote
1answer
50 views

Random selection weighted against recent previous selections

I'd like to select an element of a list where each element is weight by how long since it was last selected. I could make an LRU (least recently used) list with the weighting a function based on the ...
1
vote
3answers
714 views

Python : building a LRU cache

I want to do the following: I have around 6,00,000 entries in MongoDB in the following format: feature:category:count where feature could be any word, category is postive or negative and ...
1
vote
1answer
461 views

LRU Cache design in C with of limited size

I'm now working on a software in mobile platform where memory is very small. In a I/O bottleneck function, I need read some bytes from a img file using seek operation(You can assume that seek is ...
1
vote
1answer
349 views

Looking for a FIFO/LRU file storage system

I'm looking to implement a disk based caching system. The idea is to allocate a certain amount of disk space and save however much data fits in there, discarding of old files as I run out of space. ...
1
vote
5answers
2k views

Why is LRU better than FIFO?

Why is Least Recently Used better than FIFO in relation to page files?
0
votes
3answers
49 views

How to determing java object size in memory efficiently?

I am using a lru cache which has limit on memory usage size. The lru cache include two data structures: a hashmap and a linked list. The hash map holds the cache objects and the linked list keeps ...
0
votes
1answer
36 views

Redis Internals - LRU Implementation For Sampling

Does someone know about the internals of Redis LRU based eviction / deletion. How does Redis ensure that the older (lesser used) keys are deleted first (in case we do not have volatile keys and we ...
0
votes
0answers
36 views

Replace Second chance LRU implementation with MRU for memory zones

I need to change the 2nd chance LRU implementation into MRU algorithm for linux kernel memory management. I have version linux-3.0.9....the LRU implementation is done in vmscan.c file in ...
0
votes
0answers
52 views

Checking for LRUMap entries without Updating Map

I'm trying to implement an object cache using org.apache.commons.collections.map.LRUMap. One of my caches implements a child-parent cache. Now when a cached Entity changes, i need to update that ...
0
votes
5answers
424 views

LRU vs FIFO vs Random

When there is a page fault or a cache miss we can use either the Least Recently Used (LRU), First in Fist Out (FIFO) or Random replacement algorithms. I was wondering, which one provides the best ...
0
votes
1answer
392 views

Android : Least recently used (LRU) algorithm implementation in java?

In my application am having lot bitmaps around 1000. I have to merge them as a single image. In order to do this , loading currently needed bitmaps from sdcard .In this process i have to recyle Least ...
0
votes
2answers
151 views

What type of java cache should be used in case data changes frequently?

I have a JSP which shows data by many aggregation types. E.g. By market, by category, by server type, etc.. What I have is the data by publisher and time. Publisher is the most granular level of data ...