本地缓存工具类

<dependency>
    <groupId>com.google.guavagroupId>
    <artifactId>guavaartifactId>
    <version>30.1-jreversion>
dependency>

package com.wyh.subject.domain.util;

import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Component;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;

@Component
public class CacheUtil<K, V> {

    // 定义一个本地缓存,使用 Guava 的缓存库
    private Cache<String, String> localCache =
            CacheBuilder.newBuilder()
                    .maximumSize(5000) // 最大缓存数量为 5000 个
                    .expireAfterWrite(10, TimeUnit.SECONDS) // 缓存有效时间为 10 秒
                    .build();

    // 根据指定的缓存键获取缓存结果
    public List<V> getResult(String cacheKey, Class<V> clazz,
                             Function<String, List<V>> function) {
        List<V> resultList = new ArrayList<>();
        // 判断本地缓存中是否存在该缓存键
        String content = localCache.getIfPresent(cacheKey);
        if (StringUtils.isNotBlank(content)) {
            // 如果存在,则解析 JSON 字符串并返回结果
            resultList = JSON.parseArray(content, clazz);
        } else {
            // 如果不存在,则从数据库中查询数据,并将结果添加到本地缓存中
            resultList = function.apply(cacheKey);
            if (!CollectionUtils.isEmpty(resultList)) {
                localCache.put(cacheKey, JSON.toJSONString(resultList));
            }
        }
        // 返回查询结果
        return resultList;
    }

    public Map<K, V> getMapResult(String cacheKey, Class<V> clazz,
                                  Function<String, Map<K, V>> function) {
        return new HashMap<>();
    }

}

你可能感兴趣的:(工具,缓存)