您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 海北分类信息网,免费分类信息发布

PHP实现LRU算法的示例代码

2024/3/6 18:05:00发布22次查看
本篇文章主要给大家介绍了php的相关知识,lru是least recently used 近期最少使用算法, 内存管理的一种页面置换算法,下面将详解lru算法的原理以及实现,下面一起来看一下,希望对大家有帮助。
(推荐教程:php视频教程)
原理lru是least recently used 近期最少使用算法。 内存管理的一种页面置换算法,对于在内存中但又不用的数据块(内存块)叫做lru,操作系统会根据哪些数据属于lru而将其移出内存而腾出空间来加载另外的数据。
什么是lru算法?lru是least recently used的缩写,即最近最久未使用,常用于页面置换算法,是为虚拟页式存储管理服务的。
关于操作系统的内存管理,如何节省利用容量不大的内存为最多的进程提供资源,一直是研究的重要方向。而内存的虚拟存储管理,是现在最通用,最成功的方式—— 在内存有限的情况下,扩展一部分外存作为虚拟内存,真正的内存只存储当前运行时所用得到信息。这无疑极大地扩充了内存的功能,极大地提高了计算机的并发度。
虚拟页式存储管理,则是将进程所需空间划分为多个页面,内存中只存放当前所需页面,其余页面放入外存的管理方式。
然而,有利就有弊,虚拟页式存储管理减少了进程所需的内存空间,却也带来了运行时间变长这一缺点:进程运行过程中,不可避免地要把在外存中存放的一些信息和内存中已有的进行交换,由于外存的低速,这一步骤所花费的时间不可忽略。
因而,采取尽量好的算法以减少读取外存的次数,也是相当有意义的事情。
基本原理假设 序列为 4 3 4 2 3 1 4 2物理块有3个 则首轮 4调入内存 4次轮 3调入内存 3 4之后 4调入内存 4 3之后 2调入内存 2 4 3之后 3调入内存 3 2 4之后 1调入内存 1 3 2(因为最少使用的是4,所以丢弃4)之后 4调入内存 4 1 3(原理同上)最后 2调入内存 2 4 1
规律就是,如果新存入或者访问一个值,则将这个值放在队列开头。如果存储容量超过上限cap,那么删除队尾元素,再存入新的值。
整体设计用数组保存缓存对象(node);
缓存对象(node)之间通过nextkey,prekey组成一个双向链表;
保存链表头 跟尾;
处理流程
主要代码node 节点类
/** * 缓存值保存类, * class node * @package app\common\model */class node{ private $prekey=null;//链表前一个节点 private $nextkey=null;//链表后一个节点 private $value=null;//当前的值 private $key=null;//当前key public function __construct(string $key,$value){ $this->value=$value; $this->key=$key; } public function setprekey($prevalue){ $this->prekey=$prevalue; } public function setnextkey($nextvalue){ $this->nextkey=$nextvalue; } public function getprekey(){ return $this->prekey; } public function getnextkey(){ return $this->nextkey; } public function getvalue(){ return $this->value; } public function setvalue($value){ $this->value=$value; } public function setkey(string $key){ $this->key=$key; } public function getkey(){ return $this->key; }}
缓存类
/** * 实现lru缓存 * class lrucache * @package app\common\model */class lrucache{ public $cachetable =[]; private $headnode=null; private $lastnode=null; private $cachecount=0; private $cachemax=100; /** * 测试输出使用 */ public function dumpalldata(){ if (!empty($this->headnode)){ $node=$this->headnode; while (!empty($node)){ echo 'key='.$node->getkey().' nextkey='.(empty($node->getnextkey())?'null':$node->getnextkey()->getkey()).' prekey='.(empty($node->getprekey())?'null':$node->getprekey()->getkey()).' value='.$node->getvalue()."</br>"; $node=$node->getnextkey(); } } } /** * @param int $count */ public function setcachemax(int $count){ $this->cachemax=$count; } /** * @param string $key * @param $value * @return bool */ public function set(string $key,$value){ //设置值为null,则认为删除缓存节点 if ($value===null){ $this->del($key); return true; } //判断是否存在表中,存在则更新连表 if (!empty($this->cachetable[$key])){ $this->updatelist($key); return true; } //先判断是否要删除 $this->shiftnode(); $this->addnode($key,$value); return true; } /** * @param string $key * @return bool */ public function del(string $key){ if (!empty($this->cachetable[$key])){ $node=&$this->cachetable[$key]; //摘出节点 $this->jumpnode($node); //置空删除 $node->setprekey(null); $node->setnextkey(null); unset($this->cachetable[$key]); return true; } return false; } /** * @param string $key * @return null */ public function get(string $key){ if (!empty($this->cachetable[$key])){ $this->updatelist($key); return $this->cachetable[$key]->getvalue(); } return null; } //直接添加节点 private function addnode($key,$value){ $addnode=new node($key,$value); if (!empty($this->headnode)){ $this->headnode->setprekey($addnode); } $addnode->setnextkey($this->headnode); //第一次保存最后一个节点为头节点 if ($this->lastnode==null){ $this->lastnode=$addnode; } $this->headnode=$addnode; $this->cachetable[$key]=$addnode; $this->cachecount++; } //主动删超出的缓存 private function shiftnode(){ while ($this->cachecount>=$this->cachemax){ if (!empty($this->lastnode)){ if (!empty($this->lastnode->getprekey())){ $this->lastnode->getprekey()->setnextkey(null); } $lastkey=$this->lastnode->getkey(); unset($this->cachetable[$lastkey]); } $this->cachecount--; } } //更新节点链表 private function updatelist($key){ //这里需要使用引用传值 $node=&$this->cachetable[$key]; //当前结点为头结点 直接不用处理 if ($this->headnode===$node){ return true; } //摘出结点 $this->jumpnode($node); //跟头结点交换 $node->setnextkey($this->headnode); $this->headnode->setprekey($node); $node->setprekey(null); $this->headnode=$node; return true; } //将某个节点摘出来 private function jumpnode(node &$node){ if (!empty($node->getprekey())){ $node->getprekey()->setnextkey($node->getnextkey()); } if (!empty($node->getnextkey())){ $node->getnextkey()->setprekey($node->getprekey()); } //如果是最后一个节点,则更新最后节点为它的前节点 if ($node->getnextkey()==null){ $this->lastnode=$node->getprekey(); } //如果是头结点 if ($node->getprekey()==null){ $this->headnode=$node->getnextkey(); } }}
测试代码
public function tt(){ $cath=model("lrucache"); $cath->setcachemax(3); $cath->set("aa","aaaaaaaaaaa"); $cath->set("bb","bbbbbbbbbbbb"); $cath->set("cc","ccccccccccccc"); $cath->get("aa"); // $cath->dumpalldata(); $cath->set("dd","ddddddddddddd"); // $cath->del("cc"); // var_dump($cath->cachetable); $cath->dumpalldata(); exit();}
其实php的数组就是有序的,也可以直接用php数组实现,这里只是提供一个实现的思路,仅供参考
(推荐教程:php视频教程)
以上就是php实现lru算法的示例代码的详细内容。
海北分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录