服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Redis - Redis 缓存实现存储和读取历史搜索关键字的操作方法

Redis 缓存实现存储和读取历史搜索关键字的操作方法

2021-02-21 17:35相逢不晚何必匆匆 Redis

这篇文章主要介绍了Redis 缓存实现存储和读取历史搜索关键字,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

 

一、本案例涉及知识

  1.  Layui
  2. Redis
  3. Vue.js
  4. jQuery
  5. Ajax

 

二、效果图

Redis 缓存实现存储和读取历史搜索关键字的操作方法

 

三、功能实现

(一)使用 Layui 的样式构建页面

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title>Redis应用 - 搜索历史</title>
 <!-- 引入 Layui CSS -->
 <link rel="stylesheet" href="css/layui.css" rel="external nofollow" >
</head>
<body>
<div class="layui-form" style="width: 50%;margin-top: 20px;" id="app">
 <div class="layui-form-item">
  <label class="layui-form-label"></label>
  <div class="layui-input-block">
   <input type="text" class="layui-input">
  </div>
 </div>
 <div class="layui-form-item">
  <label class="layui-form-label"></label>
  <div class="layui-input-block">
   <button class="layui-btn">搜索</button>
  </div>
 </div>
 <div class="layui-form-item">
  <label class="layui-form-label"></label>
  <div class="layui-input-block">
   搜索历史
  </div>
 </div>
 <div class="layui-form-item">
  <label class="layui-form-label"></label>
  <div class="layui-input-block">
   <span class="layui-badge layui-bg-gray" style="margin-left: 5px;">PHP</span>
   <span class="layui-badge layui-bg-gray" style="margin-left: 5px;">JavaScript</span>
  </div>
 </div>
</div>
<!-- 引入 jQuery -->
<script src="js/jquery-3.5.1.min.js"></script>
<!-- 引入 Layui JS -->
<script src="js/layui.js"></script>
<!-- 引入 Vue.js -->
<script src="js/vue.min.js"></script>
</body>
</html>

(二)点击搜索时储存本次搜索的关键字

给文本框添加 Vue 双向绑定

?
1
<input type="text" class="layui-input" v-model="keyword">

给搜索按钮添加点击事件

?
1
<button class="layui-btn" @click="addHistory()">搜索</button>
?
1
2
3
4
5
6
7
8
9
10
11
<script type="text/javascript">
 var vm = new Vue({
  el: "#app",
  data: {
   keyword: ""
  },
  methods: {
   addHistory: function () {}
  }
 });
</script>

当文本框被输入内容后,输入的内容将绑定给 Vue 中 datakeyword 字段。

点击搜索按钮时,触发 addHistory() 函数,此函数将输入的内容发送给 PHP ,PHP 操作 Redis 将内容进行缓存

addHistory() 函数中:

?
1
2
3
4
5
6
7
8
9
10
11
addHistory: function () {
 $.ajax({
  url: "history.php",
  type: "GET",
  data: {type: 'add', keyword: this.keyword},
  success: function () {
    // 请求成功后刷新本页面
   window.location.reload();
  }
 });
}

data 中传值两个字段,type 表示本次请求的类型,其中 add 代表往缓存中添加关键字,read 代表从缓存中读取关键字。

history.php 中:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
$redis = new Redis();
$con = $redis->connect('localhost', 6379);
if (!$con) {
 echo 'Redis连接失败';
}
// 接收请求类型参数的值
$type = $_GET['type'];
// 模拟用户的id,因为每个用户搜索的内容不同,需要进行区分
$user_id = 'user-1';
// 如果请求类型为添加
if ($type == 'add') {
    // 接收输入的关键字
 $keyword = $_GET['keyword'];
 // 读取当前用户队列中存储的关键字个数,即队列的长度
 $len = $redis->llen($user_id);
 // 如果个数大于等于 5 个,则删除最开始搜索的关键字,加入最新搜索的关键字
 if ($len >= 5) {
    // 移除队列左侧的第一个关键字
  $redis->lPop($user_id);
  // 在队列右侧加入新的关键字
  $redis->rPush($user_id, $keyword);
 } else {
    // 不多于 5 个直接在队列右侧加入新的关键字
  $redis->rPush($user_id, $keyword);
 }
}

(三)读取并展示历史搜索的关键字

第二步中加入了当请求添加缓存成功后会刷新页面的代码,

?
1
window.location.reload();

在这个基础上,我们希望刷新的同时执行另一个 Ajax 请求从 PHP 中操作 Redis 将所有的历史搜索关键字读取出来并在页面中展示。

所以在 Vue 中加入页面加载完成自动调用getHistory()函数:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
methods: {
 getHistory: function () {},
 addHistory: function () {
  $.ajax({
   url: "history.php",
   type: "GET",
   data: {type: 'add', keyword: this.keyword},
   success: function () {
    window.location.reload();
   }
  });
 }
},
// 页面加载完成自动调用 getHistory()
created () {
 this.getHistory();
}

getHistory()函数中:

?
1
2
3
4
5
6
7
8
9
10
11
getHistory: function () {
 $.ajax({
  url: "history.php",
  type: "GET",
  data: {type: 'read'},
  success: function (r) {
    // JSON.parse(r) 将读取到的 json 字符串转为 json 对象
   vm.history = JSON.parse(r);
  }
 });
}

data 中传值一个字段,read 代表从缓存中读取关键字,请求成功后将返回的结果赋值给 Vue 中 datahistory 字段。

history.php 中添加读取操作:

?
1
2
3
4
5
6
7
// 如果请求类型为读取
if ($type == 'read') {
    // 从队列左侧依次取出 5 个关键字
 $history = $redis->lrange($user_id, 0, 4);
 // 转为 json 格式的数据并输出到页面中供 Ajax 使用
 echo json_encode($history, JSON_UNESCAPED_UNICODE);
}

将读取到的数据成功赋值给 Vue 中 datahistory 字段后,页面中即可将数据循环输出展示:

?
1
<span class="layui-badge layui-bg-gray" v-for="item in history" style="margin-left: 5px;">{{item}}</span>

连贯过程为:用户输入关键字并点击搜索按钮,Ajax 请求 PHP 操作 Redis 进行数据缓存且缓存成功后刷新页面,页面刷新后自动调用函数执行 Ajax 请求 PHP 操作 Redis 进行缓存数据的读取并返回于页面中同时进行渲染展示。

到此这篇关于Redis 缓存实现存储和读取历史搜索关键字的文章就介绍到这了,更多相关Redis 缓存实现存储和读取关键字内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/ZhangJiWei_2019/article/details/110924696

延伸 · 阅读

精彩推荐
  • Redis详解三分钟快速搭建分布式高可用的Redis集群

    详解三分钟快速搭建分布式高可用的Redis集群

    这篇文章主要介绍了详解三分钟快速搭建分布式高可用的Redis集群,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,...

    万猫学社4502021-07-25
  • RedisRedis 6.X Cluster 集群搭建

    Redis 6.X Cluster 集群搭建

    码哥带大家完成在 CentOS 7 中安装 Redis 6.x 教程。在学习 Redis Cluster 集群之前,我们需要先搭建一套集群环境。机器有限,实现目标是一台机器上搭建 6 个节...

    码哥字节15752021-04-07
  • RedisRedis集群的5种使用方式,各自优缺点分析

    Redis集群的5种使用方式,各自优缺点分析

    Redis 多副本,采用主从(replication)部署结构,相较于单副本而言最大的特点就是主从实例间数据实时同步,并且提供数据持久化和备份策略。...

    优知学院4082021-08-10
  • Redis如何使用Redis锁处理并发问题详解

    如何使用Redis锁处理并发问题详解

    这篇文章主要给大家介绍了关于如何使用Redis锁处理并发问题的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Redis具有一定的参考学习...

    haofly4522019-11-26
  • Redis《面试八股文》之 Redis十六卷

    《面试八股文》之 Redis十六卷

    redis 作为我们最常用的内存数据库,很多地方你都能够发现它的身影,比如说登录信息的存储,分布式锁的使用,其经常被我们当做缓存去使用。...

    moon聊技术8182021-07-26
  • Redisredis缓存存储Session原理机制

    redis缓存存储Session原理机制

    这篇文章主要为大家介绍了redis缓存存储Session原理机制详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪...

    程序媛张小妍9252021-11-25
  • Redis关于Redis数据库入门详细介绍

    关于Redis数据库入门详细介绍

    大家好,本篇文章主要讲的是关于Redis数据库入门详细介绍,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览...

    沃尔码6982022-01-24
  • RedisRedis Template实现分布式锁的实例代码

    Redis Template实现分布式锁的实例代码

    这篇文章主要介绍了Redis Template实现分布式锁,需要的朋友可以参考下 ...

    晴天小哥哥2592019-11-18