Cache, used by many websites, especially when dealing with high concurrency, caching is essential. This article is based on phalapi to explain the actual use of cached Redis. I hope it will be helpful to everyone.
Preface
When we are developing a project, we may encounter many problems, such as message push, sending emails, sending text messages, and concurrency failure. At this time, it is time to turn Let’s go to the commonly used cache to save us. Next, let’s talk about the actual use of cached Redis to solve practical problems. Here is the basic knowledge based on redis, and a brief look at the redis expansion document of PhalApi. Come and read this Section.
#1. What problems can be solved
When we use a technology, of course we use it to solve problems. So what specific problems can we use caching technology Redis to solve?
1.1 Caching result set
Here is an example and you will understand what caching result set means after looking at it
//从缓存redis的clubcache库中查询club表where条件是city,city值是$city $cache = DI()->redis->get_Time('club'.'city'.$city,'clubcache'); //如果查询到了就直接返回缓存的结果 if($cache){ return $cache; } //如果不存在从数据库里面获取结果然后存入redis缓存key的条件和取值时一样,最后一个参数为过期时间 $rs = $this->getORM()->select('*')->where('city',$city)->fetchAll(); DI()->redis->set_Time('club'.'city'.$city,$rs,'clubcache',600);
What we do above is to save the results for 600 seconds. Querying again within 600 seconds will get the same results
1.2 Queue processing
There is a key point in the application of Redis to time. The function is its queue
Let’s first go through a few special redis functions
//写入队列左边 set_lPush //写入队列左边 如果value已经存在,则不添加 set_lPushx //写入队列右边 set_rPush //写入队列右边 如果value已经存在,则不添加 set_rPushx //读取队列左边 get_lPop //读取队列右边 get_rPop //读取队列左边 如果没有读取到阻塞一定时间 get_blPop //读取队列右边 如果没有读取到阻塞一定时间 get_brPop
For example, when we are doing business such as message push, sending emails, and sending text messages, we need to request the first For third-party interfaces, the request speed is determined by the third party. For example, a push interface on WeChat is 200ms. If it is put into our API business, a huge problem will arise. User access speed will drop extremely. The solution to this kind of problem is The queue process is as follows
When we receive a push request from the user
↓
Add the push request to the queue API without performing any operation (such as adding it to the left)
↓
(Reading the right side is backward and out, if you read the left, you are advanced first)
↓
Then execute the push logic of the response
Generally our script is an infinite loop, or the shell makes a scheduled request. We will use blocking when the data cannot be read to solve the problem of too fast loops where the value cannot be reached. Question
1.3 Temporary data storage
Temporary data does not require too much explanation, just an example is enough
For example, when we obtain the verification code, we need to Is the verification code stored in the database? I think it is not necessary, and the database is not easy to perform expiration operations. We can only judge by ourselves
Then we use redis to store the verification code into redis and then give an expiration time. This solves this problem very well
1.4 Database
Using redis as a database is a relatively in-depth use. Here are some thoughts
After everyone, the service can be distributed , but it is not easy to distribute most databases, so many systems are spliced and piled up in the database. Of course, you can use cache to store the result set, but this solution is convenient for treating the symptoms rather than the root cause. When discussing with children's shoes, I got A convenient solution is to use redis as the first database and mysql as the metadata database.
After doing this operation, the server will automatically synchronize the hot data to redis and store the cold data in mysql. When the cold data is used, After the data is stored in redis, most of the user's operations are basically operations based on redis
The cost of this implementation is relatively high. It requires a lot of energy to implement redis data synchronization encapsulation, use where queries, etc. Do, in the later stage I plan to make a general extension
#2. Standardized use
In fact, the above categories have been almost covered, why still I have to take out a separate paragraph to talk about the specifications, because the cache is not like a database. When you need to check the cache, if all the data is accumulated in a redis library, you will be very painful.
But Redis supports multiple libraries, so it needs a set of specifications to divide them. Here I will share how I use
0~10 libraries as normal business libraries, that is, push queues and temporary data. Each library only Store data for a business. For example, WeChat push data exists in 5 libraries, and email push data exists in 6 libraries. Temporary data for sending verification codes is stored in 3 libraries, and so on. If you feel that 10 libraries are not enough, you can use it according to the business Add
10 or more libraries as cache libraries to store the result set data of each table, or other data
The naming convention of all keys must contain type + table name + condition
Related recommendations:
php file cache class usage example analysis
Analysis on Redis cluster failure
The above is the detailed content of phalapi-caching usage and redis expansion. For more information, please follow other related articles on the PHP Chinese website!

团队在Outlook中有一个非常有用的加载项,当您在使用Outlook2013或更高版本的应用程序时安装以前的应用程序时,它会自动安装。安装这两个应用程序后,只需打开Outlook,您就可以找到预装的加载项。但是,一些用户报告了在Outlook中找不到Team插件的异常情况。修复1–重新注册DLL文件有时需要重新注册特定的Teams加载项dll文件。第1步-找到MICROSOFT.TEAMS.ADDINLOADER.DLL文件1.首先,您必须确保

地址解析协议 (ARP) 用于将 MAC 地址映射到 IP 地址。网络上的所有主机都有自己的 IP 地址,但网络接口卡 (NIC) 将有 MAC 地址而不是 IP 地址。ARP 是用于将 IP 地址与 MAC 地址相关联的协议。所有这些条目都被收集并放置在 ARP 缓存中。映射的地址存储在缓存中,它们通常不会造成任何损害。但是,如果条目不正确或 ARP 缓存损坏,则会出现连接问题、加载问题或错误。因此,您需要清除 ARP 缓存并修复错误。在本文中,我们将研究如何清除 ARP 缓存的不同方法。方法

根据几位Windows10和Windows11用户的说法,他们在尝试安装Windows更新时遇到了错误0x80070246。此错误阻止他们升级PC并享受最新功能。值得庆幸的是,在本指南中,我们列出了一些最佳解决方案,可帮助您解决Windows0PC上80070246x11的Windows更新安装错误。我们还将首先讨论可能引发问题的原因。让我们直接进入它。为什么我会收到Windows更新安装错误0x80070246?您可能有多种原因导致您在PC上收到Windows11安装错误0x80070246。

如何在Mac上清除和重置图标缓存警告:因为您将使用终端和rm命令,所以在继续执行任何操作之前,最好使用TimeMachine或您选择的备份方法备份您的Mac。输入错误的命令可能会导致永久性数据丢失,因此请务必使用准确的语法。如果您对命令行不满意,最好完全避免这种情况。启动终端并输入以下命令并按回车键:sudorm-rfv/Library/Caches/com.apple.iconservices.store接下来,输入以下命令并按回车键:sudofind/private/var

尝试在其设备上启动 Microsoft Teams 桌面客户端的用户在空白应用页面中报告了错误代码 caa70004。错误代码说:“我们很抱歉——我们遇到了问题。”以及重新启动 Microsoft Teams 以解决问题的选项。您可以尝试实施许多解决方案并再次加入会议。解决方法——1. 您应该尝试的第一件事是重新启动 Teams 应用程序。只需在错误页面上点击“重新启动”即可。

Windows操作系统使用缓存来存储DNS条目。DNS(域名系统)是用于通信的互联网核心技术。特别是用于查找域名的IP地址。当用户在浏览器中键入域名时,加载站点时执行的首要任务之一是查找其IP地址。该过程需要访问DNS服务器。通常,互联网服务提供商的DNS服务器会自动使用,但管理员可能会切换到其他DNS服务器,因为这些服务器可能更快或提供更好的隐私。如果DNS用于阻止对某些站点的访问,则切换DNS提供商也可能有助于绕过Internet审查。Windows使用DNS解

什么是缓存?缓存(发音为ka·shay)是一种专门的高速硬件或软件组件,用于存储经常请求的数据和指令,这些数据和指令又可用于更快地加载网站、应用程序、服务和系统的其他部分。缓存使最常访问的数据随时可用。缓存文件与缓存内存不同。缓存文件是指经常需要的文件,如PNG、图标、徽标、着色器等,多个程序可能需要这些文件。这些文件存储在您的物理驱动器空间中,通常是隐藏的。另一方面,高速缓存内存是一种比主内存和/或RAM更快的内存类型。它极大地减少了数据访问时间,因为与RAM相比,它更靠近CPU并且速度

vue缓存数据有4种方式:1、利用localStorage,语法“localStorage.setItem(key,value)”;2、利用sessionStorage,语法“sessionStorage.setItem(key,value)”;3、安装并引用storage.js插件,利用该插件进行缓存;4、利用vuex,它是一个专为Vue.js应用程序开发的状态管理模式。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
