16.用户搜索历史保存到redis中

目的:将用户搜索的关键词保存到redis中,且只显示最近的8条,在redis中,key的格式是HISTORY+用户的id

实现方式:使用单键多值的列表实现

具体代码

package com.cy.store.util;

import com.cy.store.common.Const;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import redis.clients.jedis.Jedis;

import java.util.List;

/**
 * @author ZhangHailong
 * @date 2022/5/19 - 10:23
 * @project_name 增加,查询,删除搜索词记录到redis工具类
 */
public class SearchHistoryUtil {


    /**
     *@描述 增加搜索记录
     *@参数 uid:参与搜索的用户id,searchTerm:搜索词
     *@返回值 void
     */
    public static void saveSearchHistory(Integer uid, String searchTerm) {

        String saveKey = Const.HISTORY_K + uid.toString();

        Jedis jedis = new Jedis("127.0.0.1",6379);

        // 移除和搜索词相等的记录
        jedis.lrem(saveKey, 0, searchTerm);
        // 添加关键词到redis中,并放在了第一位,方便展示
        jedis.lpush(saveKey,searchTerm);

        //只保存8个值
        jedis.ltrim(saveKey, 0, 7);

    }

    /**
     *@描述 获取只保存的8个搜索记录
     *@参数 uid:用户id
     *@返回值 搜索记录List集合
     */
    public static List<String> getSearchHistory(Integer uid) {

        String saveKey = Const.HISTORY_K + uid.toString();
        List<String> list;

        Jedis jedis = new Jedis("127.0.0.1",6379);
        list = jedis.lrange(saveKey, 0, 7);

        return list;
    }

    /**
     *@描述 删除搜索记录
     *@参数 uid:用户id
     *@返回值 void
     */
    public static void removeSearchHistory(Integer uid) {

        String saveKey = Const.HISTORY_K + uid.toString();

        Jedis jedis = new Jedis("127.0.0.1",6379);
        jedis.del(saveKey);

    }
}

测试增加搜索历史:虽然增加了九条,但是只保存了就近的八条

@Test
public void test2() {

    SearchHistoryUtil.saveSearchHistory(7, "java");
    SearchHistoryUtil.saveSearchHistory(7, "c++");
    SearchHistoryUtil.saveSearchHistory(7, "java web");
    SearchHistoryUtil.saveSearchHistory(7, "python");
    SearchHistoryUtil.saveSearchHistory(7, "c#");
    SearchHistoryUtil.saveSearchHistory(7, "c");
    SearchHistoryUtil.saveSearchHistory(7, "scala");
    SearchHistoryUtil.saveSearchHistory(7, "spark");
    SearchHistoryUtil.saveSearchHistory(7, "Vue");

}

在这里插入图片描述

获取、删除搜索记录就不测试了,传用户id即可

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值