• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    手动实现Redis的LRU缓存机制示例详解

    前言

    最近在逛博客的时候看到了有关Redis方面的面试题,其中提到了Redis在内存达到最大限制的时候会使用LRU等淘汰机制,然后找了这方面的一些资料与大家分享一下。 LRU总体大概是这样的,最近使用的放在前面,最近没用的放在后面,如果来了一个新的数,此时内存满了,就需要把旧的数淘汰,那为了方便移动数据,肯定就得使用链表类似的数据结构,再加上要判断这条数据是不是最新的或者最旧的那么应该也要使用hashmap等key-value形式的数据结构。

    第一种实现(使用LinkedHashMap)

    public class LRUCache {
    
      int capacity;
      MapInteger,Integer> map;
    
      public LRUCache(int capacity){
        this.capacity = capacity;
        map = new LinkedHashMap>();
      }
    
      public int get(int key){
        //如果没有找到
        if (!map.containsKey(key)){
          return -1;
        }
        //找到了就刷新数据
        Integer value = map.remove(key);
        map.put(key,value);
        return value;
      }
    
      public void put(int key,int value){
        if (map.containsKey(key)){
          map.remove(key);
          map.put(key,value);
          return;
        }
        map.put(key,value);
        //超出capacity,删除最久没用的即第一个,或者可以复写removeEldestEntry方法
        if (map.size() > capacity){
          map.remove(map.entrySet().iterator().next().getKey());
        }
      }
    
      public static void main(String[] args) {
        LRUCache lruCache = new LRUCache(10);
        for (int i = 0; i  10; i++) {
          lruCache.map.put(i,i);
          System.out.println(lruCache.map.size());
        }
        System.out.println(lruCache.map);
        lruCache.put(10,200);
        System.out.println(lruCache.map);
      }

    第二种实现(双链表+hashmap)

    public class LRUCache {
    
      private int capacity;
      private MapInteger,ListNode>map;
      private ListNode head;
      private ListNode tail;
    
      public LRUCache2(int capacity){
        this.capacity = capacity;
        map = new HashMap>();
        head = new ListNode(-1,-1);
        tail = new ListNode(-1,-1);
        head.next = tail;
        tail.pre = head;
      }
    
      public int get(int key){
        if (!map.containsKey(key)){
          return -1;
        }
        ListNode node = map.get(key);
        node.pre.next = node.next;
        node.next.pre = node.pre;
        return node.val;
      }
    
      public void put(int key,int value){
        if (get(key)!=-1){
          map.get(key).val = value;
          return;
        }
        ListNode node = new ListNode(key,value);
        map.put(key,node);
        moveToTail(node);
    
        if (map.size() > capacity){
          map.remove(head.next.key);
          head.next = head.next.next;
          head.next.pre = head;
        }
      }
    
      //把节点移动到尾巴
      private void moveToTail(ListNode node) {
        node.pre = tail.pre;
        tail.pre = node;
        node.pre.next = node;
        node.next = tail;
      }
    
      //定义双向链表节点
      private class ListNode{
        int key;
        int val;
        ListNode pre;
        ListNode next;
    
        //初始化双向链表
        public ListNode(int key,int val){
          this.key = key;
          this.val = val;
          pre = null;
          next = null;
        }
      }
    }

    像第一种方式,如果复写removeEldestEntry会更简单,这里简单的展示一下

    public class LRUCache extends LinkedHashMapInteger,Integer> {
      private int capacity;
      
      @Override
      protected boolean removeEldestEntry(Map.EntryInteger, Integer> eldest) {
        return size() > capacity;
      }
    }

    到此这篇关于手动实现Redis的LRU缓存机制的文章就介绍到这了,更多相关Redis的LRU缓存机制内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • Java手动实现Redis的LRU缓存机制
    • 浅谈redis缓存在项目中的使用
    • 详解redis缓存与数据库一致性问题解决
    • 浅谈MySQL与redis缓存的同步方案
    • 使用 Redis 缓存实现点赞和取消点赞的示例代码
    • 详解Redis 缓存删除机制(源码解析)
    • Redis 缓存实现存储和读取历史搜索关键字的操作方法
    • SpringCache 分布式缓存的实现方法(规避redis解锁的问题)
    • 详解缓存穿透击穿雪崩解决方案
    上一篇:Redis集群水平扩展、集群中添加以及删除节点的操作
    下一篇:Windows安装Redis并添加本地自启动服务的实例详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    手动实现Redis的LRU缓存机制示例详解 手动,实现,Redis,的,LRU,缓存,