搜索资源列表
lru-cache
- 使用LRU方法更新Cache 结合数据结构的相关知识,使用LRU的策略,对一组访问序列进行内部的Cache更新 并附实验报告-use LRU Cache update method combining data structures and the related knowledge, the use of the LRU strategy the group visited a sequence within the Cache update accompanied experimen
cache_521
- 高速缓存算法类.英文介绍: The Cache class implements a simple caching mechanism with \"least recently used\" (LRU) replacement. It is useful for cases in which you have some memory to spare and you wish to speed up access to frequently used resources
cache4j_0.4_src
- cache4j是一个有简单API与实现快速的Java对象缓存。它的特性包括:在内存中进行缓存,设计用于多线程环境,两种实现:同步与阻塞,多种缓存清除策略:LFU, LRU, FIFO,可使用强引用(strong reference)与软引用(soft reference)存储对象。-cache4j is a simple API and achieving rapid Java Object Cache. Its features include : in memory for caching,
FIFO_LRU_update_Cache
- 计算机体系结构实验程序,分别采用FIFO与LRU算法实现Cache块的更新,功能更新过程中换入换出、命中等分步动态显示。
ASL
- 本引擎是一款功能全面的2D游戏引擎。图形模块用MMX指令优化了各种常用特效如半 透明、色饱和、alpha通道绘制等,完全工作于GDI方式,提供了极高的兼容性。中 文显示模块用LRU算法的Cache管理字模,支持平滑字体显示(反锯齿),MMX指令优 化,成倍提高绘制速度。强大的可扩展GUI系统,模仿VCL的层次和接口,使用起来 类似在C++ Builder下的开发,实现了各种常用控件。另有支持Zip的文件IO、Ini文 件解析、音频播放、输入处理、精密时钟等各模块。引擎纯面向对
cache_replacement
- Cache 替换算法,结合LRU和LFU的一个替换算法-Cache replacement algorithm, combined with LRU and LFU replacement algorithm
Tie-FileLRUCache-1.01.tar
- 实现文件系统LRU的cache机制,是一个perl编写的模块-LRU cache for file system, programmed by perl
cache
- (1)FIFO:First In First Out,先进先出 (2)LRU:Least Recently Used,最近最少使用 (3)LFU:Least Frequently Used,最不经常使用-(1)FIFO:First In First Out (2)LRU:Least Recently Used (3)LFU:Least Frequently Used
cache
- 实现LRU算法的Cache源代码,可以用来支持整个系统中某种对象数量的个数限制,同时,通过LRU算法保证使用频度高的对象尽可能的驻留内存。 该算法可以用来支持J2EE系统性能提升,同时又可以控制内存安全使用。-LRU algorithm implementation Cache source code, can be used to support the system as a whole number of objects in a certain number of restricti
Cache_dotnet_cs
- 实现LRU算法的cache dotnet C#源码,用来支持asp.net程序提升系统访问速度。同时保证系统能够控制内存的使用不产生泄漏。-LRU algorithm implementation cache dotnet C# source code, used to support asp.net procedures to enhance the speed of system access. At the same time to ensure that the system be ab
NET_Memcached
- Memcached通过在内存中开辟一块区域来维持一个大的hash表来加快页面访问速度,虽然和数据库是独立的,但是目前主要用来缓存数据库的数据。允许多个server通过网络形成一个大的hash,用户不必关心数据存放在哪,只调用相关接口就可。存放在内存的数据通过LRU算法进行淘汰出内存。同时可以通过删除和设置失效时间来淘汰存放在内存的数据-Memcached in memory by opening an area to maintain a large hash table to speed up
LRU
- calculate the LRU of cache based on VC
cache
- 实现cache替换算法,思路是改进的LRU和LFU算法,在一定程度上提高了原来的LRU算法的命中率。-Achieve cache replacement algorithm, idea is to improve the LRU and LFU algorithms, to a certain extent, the original LRU algorithm to improve the hit rate.
LRU-update-Cache-
- LRU置换算法是选择最近最久未使用的页面予以置换。该算法赋予每个页面一个访问字段,用来记录一个页面自上次被访问以来经历的时间T,当须淘汰一个页面时,选择现有页面中T值最大的,即最近最久没有访问的页面。这是一个比较合理的置换算法。-LRU replacement algorithm is to select the page from lack of use the most recent to be replaced. The algorithm gives an access field in
cache.tar
- 一个CPU系统中LCACHE的设计,使用LRU算法替换-a LCACHE design in a CPU system, using arithmetic
lru
- LRU算法更新Cache—— 了解和掌握寄存器分配和内存分配的有关技术。 -The LRU algorithm updates the Cache- understand and grasp the register allocation and memory allocation technology.
LRU
- CACHE的LRU算法的简单代码,编译运行环境为WINDOWS下VS2010。-CACHE LRU algorithm simple code, compile and run under WINDOWS environment VS2010.
cache
- cache 模拟器:支持LRU和random两种替换策略-cache simulator: support LRU and random replacement strategies
lru
- A C program to show implementation of LRU cache
LRU-Cache
- 设计和实现一个数据结构最近最少使用(LRU)缓存。它应该支持以下操作:获取和设置。 得到(关键)得到的价值(永远是积极的)关键如果键存在于缓存中,否则返回1。 集(关键字,值)——设置或插入的值如果不是已经存在的关键。当缓存达到容量,应该最近最少使用项失效前插入一个新项。-Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following op