LRU is a family of caching algorithms, where LRU stands for least recently used.
-3
votes
0answers
32 views
Implementing FIFO and LRU in C that gives same performance
I want to wrte a small C program for which LRU and FIFO will perform the same. I will ignore the memory used by the program code itself, and assume that the only memory that is needed is for global ...
0
votes
1answer
37 views
LRU is used in file system cache?
I learned that due to computational overhead, true LRU is not implemented in virtual memory systems. So, why is the LRU algorithm feasible in a file cache?
I think reason is may be the time field in ...
1
vote
4answers
180 views
the best way to implement LRU cache
I want to create an efficient implementation of LRU cache. I've found that the most convenient way is to use LinkedHashMap but unfortunately it's quite slow if many threads are using a cache. My ...
0
votes
3answers
123 views
LRU Caching & Multithreading
I have already made a post some time ago to ask about a good design for LRU caching (in C++). You can find the question, the answer and some code there:
Better understanding the LRU algorithm
I have ...
2
votes
3answers
190 views
Better understanding the LRU algorithm
I need to implement a LRU algorithm in a 3D renderer for texture caching. I write the code in C++ on Linux.
In my case I will use texture caching to store "tiles" of image data (16x16 pixels block). ...
4
votes
1answer
148 views
Sorted Keys data structure for LRU and MRU cache eviction policies
I am working on a simple data structure that will implement a cache eviction policy. The two possible scenarios I want to implement are LRU and MRU
I am looking for a map-like data structure where ...
0
votes
3answers
71 views
LRU Algortihm In Java
I currently have an array of a custom class which looks like:
Phy[] memory = new Phy[256];
Within my Phy class I have the following functions:
Get time stamp (Returns time stamp)
Update time ...
1
vote
1answer
150 views
Python LRU Cache Decorator Per Instance
Using the LRU Cache decorator found here:
http://code.activestate.com/recipes/578078-py26-and-py30-backport-of-python-33s-lru-cache/
from lru_cache import lru_cache
class Test:
...
0
votes
2answers
53 views
Is this usage of a cache map safe in a multithreaded environment?
I'm implementing a LRU cache for photos of users, using Commons Collections LRUMap (which is basicly a LinkedHashMap with small modifications). The findPhoto method can be called several hundred times ...
1
vote
1answer
182 views
Memory-Leaks Image-Gallery Android - How can other applications handle it?
i'm trying to implement a image gallery, which should show ~ 5-15 smaller images and one "current selected" bigger image.
It looks like: ...
0
votes
2answers
197 views
LRUCache in Scala?
I know Guava has an excellent caching library but I am looking for something more Scala/functional friendly where I can do things like cache.getOrElse(query, { /* expensive operation */}) . I also ...
0
votes
0answers
46 views
what is member 'd_lru' of dentry object used for in linux kernel?
I recently want to have some study about the dentry Cache mechanism in Linux kernel with version 2.6.38.
I know member d_lru in dentry object is pointers for the list of unused dentries.
Also every ...
0
votes
1answer
258 views
Ehcache and Apache JCS - how this work?
I need Lru cache to store several (~100) huge object (~10MB for example).
I read about Ehcache and JSC and have one question. I have the case:
I store 10 object in ehcache. Then i get one from them ...
0
votes
0answers
82 views
Caching Requests (TTL,LRU) in Android
I need a solution for caching my requests in Android, with features like TTL and LRU. The response is a simple String (not a bitmap or anything) but i don't want that to send it twice (except after an ...
0
votes
1answer
394 views
Least Recently Used (LRU) paging algorithm always more efficient than FIFO?
I am doing a project simulating page replacement for my operating systems course. I have a simulator than runs all three algorithms on 1200 references. I am getting page fault rates, however, where ...
3
votes
1answer
318 views
LRU cache in C++ [duplicate]
Possible Duplicate:
LRU cache design
I got this question in a programming interview. Feel free to think about how you might answer it.
How would you implement an LRU ...
2
votes
1answer
388 views
Redis maxmemory-policy: performances of volatile-lru vs allkeys-lru
assuming all keys in a redis instance have an expire set, volatile-lru and allkeys-lru are similar. But is there a significative performance difference between the 2 when a key is removed?
Bonus ...
0
votes
1answer
149 views
How can I improve my lru implementation
I've implemented LRU using hashtable+linked list.
The hash table has chaining. The structure for code is as follows:
struct Node{
int value;
struct Node *next;
struct Node* head;
struct Node* tail;
...
0
votes
2answers
321 views
Regarding LRU Cache Design using HashMap and Linked List combination
Referring to LRU cache design
I have a question regarding the answer.
Say my hash map is full (the interviewer gave me a max size) [I understand if I need to fetch a pair already present in the map ...
2
votes
1answer
127 views
C++ Index ordering issue with Boost MultiIndex as an LRU cache
I have the following LRU implementation made using Boost.MultiIndex bashed on this example.
The problem is when I change the ordering of the index_by section (and update the enum index_idx ...
1
vote
0answers
156 views
Simulating memory limited cache using Java [closed]
I am trying to write a size configured LRU cache for a web access simulation. By size configured, I mean the eviction is triggered by object's size rather than object count. I found several answers ...
1
vote
1answer
219 views
Algorithm for lock-free queue with move-to-tail functionality
For an LRU cache I need an algorithm for a lock-free queue similar to the one described in the paper Simple, Fast, and Practical Non-Blocking and Blocking Concurrent Queue Algorithms
But to maintain ...
0
votes
0answers
64 views
Intel cache size
I figured out that my cache has 32KB Data Size and a 64 byte block size
My cache is 4-way set associative
How do I calculate the total number of bytes in the cache?
Thanks very much!
0
votes
0answers
229 views
Cache size calculation
If I have a 32KB Data Size and my block size is 64 bytes
For a 4-way set associative cache, what is the total number of bytes in the cache?
(including the tag and valid 'overhead' bits and the bits ...
0
votes
1answer
66 views
How does Android system handle activities when it is stopped?
I am so curious about what will happen for the app's activities when the app is dismissed from the screen and the user switches to other apps. In the activity circle, the activity will reach onStop(), ...
0
votes
2answers
490 views
Page faults and LRU Algorithm
A main memory can retain up to 4 pages. Which page will be the first one to get a page fault if LRU algorithm is used on the following pages that is in order?
1,2,3,1,2,4,1,2,3
This is a test ...
2
votes
3answers
392 views
Variable size LRU cache
I am trying to implement an LRU cache in Java which should be able to:
Change size dynamically. In the sense that I plan to have it as SoftReference subscribed to a ReferenceQueue. So depending upon ...
0
votes
0answers
87 views
LRU vs NFU - implementation issue
As I understand we use NFU, which is just approximation of LRU, because LRU is hard to implementation in the "real world".
But I don't understant why - this is just because the size of the matrix we ...
2
votes
2answers
186 views
Thread-safe (Goroutine-safe) cache in Go
Question 1
I am building/searching for a RAM memory cache layer for my server. It is a simple LRU cache that needs to handle concurrent requests (both Gets an Sets).
I have found ...
0
votes
1answer
291 views
boost multi index for a fixed sized multi-indexed polymorphic container
Still digging into C++/boost so any comments/feedback are welcome.
I was playing with boost::unordered_maps and created a polymorphic example using shapes, about the time I had my head
wrapped around ...
1
vote
1answer
371 views
boost multi index access to hashed unique index
This code is adopted from the boost multi-index "mru" example:
http://www.boost.org/doc/libs/1_46_1/libs/multi_index/example/serialization.cpp
I have code that is doing something similiar as a ...
0
votes
1answer
33 views
how browsers clean the cache when the cache reach the limit?
I tried to look for this information on the net, but couldn't find good info about that.
Do you know to describe how it works?
1. Is it some kind of LRU algorithm?
2. Does all the browsers share the ...
0
votes
1answer
238 views
Virtual Memory, LRU, and Page Faults - Homework
I've been working on the following program and it feels like it's missing some information or a) and b) are a bit of a trick:
The loop is executed as part of a program on a virtual memory system that ...
2
votes
1answer
2k views
Memcache and expired items
When in memcache the available memory is full, memcache uses the LRU (last recently used) algorithm to free memory.
My question is will the LRU Algorithm rather delete entries that have not been used ...
1
vote
0answers
179 views
Cache replacement policies, implementation of adaptive cache replacement
Can anyone help with Java implementation of Adaptive Cache Replacement algorithm? It's a part of my bachelor's diploma and I have real problem's with understanding of it.
I use the cache ...
0
votes
3answers
652 views
Simplescalar cache LRU implementation
I'm looking for the LRU code in the cache.c file, but this is the only code I can find:
switch (cp->policy) {
case LRU:
case FIFO:
repl = cp->sets[set].way_tail;
...
0
votes
4answers
187 views
what is the logical error in the following lru code
I wanted to use the following code for a very simple lru page replacement for my application. The counter for the second and third elements of buf_rec always have the same values and I couldn't see ...
2
votes
1answer
1k views
Default memory cache with LRU policy
I am trying to implement some caching in my application and i want to use the default memory cache in C# (this requirement can be changed if this it wont work). My problem is that don't want to exceed ...
-2
votes
1answer
231 views
Suggestion for Caching in Java [closed]
I am creating Tree like a structure using HashMap.
For Eg:
Map child = new HashMap("child","value");
Map subparent = new HashMap("subparent",child);
Map parent = new HashMap("",subparent);
Using ...
4
votes
2answers
1k views
Sizing LRU Cache according to device capabilities and free memory
I'm thinking about implementing the first layer of my caching in an Android app.
I was considering SoftReferences to surely avoid OOM exceptions, but since there are many articles about how Android ...
1
vote
3answers
2k views
How to determing java object size in memory efficiently? [duplicate]
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 ...
2
votes
1answer
521 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 ...
5
votes
6answers
422 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. ...
1
vote
1answer
174 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 ...
6
votes
1answer
727 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) {
...
0
votes
5answers
2k 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 ...
2
votes
1answer
218 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, ...
2
votes
1answer
803 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
1answer
1k 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 ...
0
votes
1answer
822 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 ...