## 一,系统配置
.env 中配置redis
~~~
[REDIS0]
TYPE = redis
HOST = 127.0.0.1
PORT = 6379
PASSWORD =
~~~
说明:刘宏缔的架构森林是一个专注架构的博客,地址:[https://www.cnblogs.com/architectforest](https://www.cnblogs.com/architectforest)
对应的源码可以访问这里获取: [https://github.com/liuhongdi/
](https://github.com/liuhongdi/) 或: [https://gitee.com/liuhongdi](https://gitee.com/liuhongdi)
说明:作者:刘宏缔 邮箱: 371125307@qq.com
## 二,编写php代码
1,controller/Goods.php
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
~~~
class Goods extends BaseController
{
/**
* 商品详情
*
* @return \think\Response
*/
public function Detail(){
$rate = new RedisLuaRate();
$res = $rate->setRate();
$log = new BusinessLog("admin");
$log->log("rate res:".$res.":");
if ($res == "1") {
return Result::Success("成功");
} else {
return Result::Error("1","超出访问频率限制");
}
}
}
~~~
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
说明:此处仅做演示,实际应用时应该把这个拦截限流的功能放到middleware中
2,lib/util/RedisLuaRate.php
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
~~~
<?php
namespace app\lib\util;
class RedisLuaRate {
function setRate() {
$lua = <<<SCRIPT
local key = KEYS[1];
local limit = tonumber(KEYS[2])
local length = tonumber(KEYS[3])
--redis.log(redis.LOG_NOTICE,' length: '..length)
local current = redis.call('GET', key)
if current == false then
--redis.log(redis.LOG_NOTICE,key..' is nil ')
redis.call('SET', key,1)
redis.call('EXPIRE',key,length)
--redis.log(redis.LOG_NOTICE,' set expire end')
return '1'
else
--redis.log(redis.LOG_NOTICE,key..' value: '..current)
local num_current = tonumber(current)
if num_current+1 > limit then
return '0'
else
redis.call('INCRBY',key,1)
return '1'
end
end
SCRIPT;
$redis = new \Redis();
$redis->connect(env('redis0.host', '127.0.0.1'),env('redis0.port', '6379'));
$redis->select(0);
$key = "ip".request()->ip();
$sequence = $redis->eval($lua, [$key,3,1], 3);
$luaError = $redis->getLastError();
if (isset($luaError)) {
// print_r($luaError);
}
return $sequence;
}
}
~~~
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
说明: eval函数的第3个参数为KEYS个数。 phpredis依据此值将KEYS和ARGV做区分
## 三,测试效果
1,用ab做并发测试:
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
~~~
liuhongdi@lhdpc:/data/php/admapi/app$ ab -c 10 -n 10 http://192.168.219.6:8000/goods/detail?goodsid=12323
This is ApacheBench, Version 2.3 <$Revision: 1879490 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 192.168.219.6 (be patient).....done
Server Software: nginx/1.18.0
Server Hostname: 192.168.219.6
Server Port: 8000
Document Path: /goods/detail?goodsid=12323
Document Length: 37 bytes
Concurrency Level: 10
Time taken for tests: 0.059 seconds
Complete requests: 10
Failed requests: 7
(Connect: 0, Receive: 0, Length: 7, Exceptions: 0)
Total transferred: 2276 bytes
HTML transferred: 496 bytes
Requests per second: 169.79 [#/sec] (mean)
Time per request: 58.897 [ms] (mean)
Time per request: 5.890 [ms] (mean, across all concurrent requests)
Transfer rate: 37.74 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 1 0.5 1 2
Processing: 12 26 11.0 25 44
Waiting: 11 26 11.2 25 44
Total: 13 27 10.9 26 45
Percentage of the requests served within a certain time (ms)
50% 26
66% 29
75% 37
80% 42
90% 45
95% 45
98% 45
99% 45
100% 45 (longest request)
~~~
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
2,查看代码在日志中写入的结果:
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
~~~
2022-01-24 16:37:50--192.168.219.6--rate res:1:
2022-01-24 16:37:50--192.168.219.6--rate res:1:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:1:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
2022-01-24 16:37:50--192.168.219.6--rate res:0:
~~~
[![复制代码](https://common.cnblogs.com/images/copycode.gif)](javascript:void(0); "复制代码")
可以看到在同一秒钟内,有三次返回成功,其余是返回失败
## 四,查看php和thinkphp的版本
php:
~~~
liuhongdi@lhdpc:/data/php/admapi$ php --version
PHP 8.1.1 (cli) (built: Dec 20 2021 16:12:16) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.1.1, Copyright (c) Zend Technologies
with Zend OPcache v8.1.1, Copyright (c), by Zend Technologies
~~~
thinkphp:
~~~
liuhongdi@lhdpc:/var/www/html$ cd /data/php/admapi/
liuhongdi@lhdpc:/data/php/admapi$ php think version
v6.0.10LTS
~~~
- thinkphp6执行流程(一)
- php中use关键字用法详解
- Thinkphp6使用腾讯云发送短信步骤
- 路由配置
- Thinkphp6,static静态资源访问路径问题
- ThinkPHP6.0+ 使用Redis 原始用法
- smarty在thinkphp6.0中的最佳实践
- Thinkphp6.0 搜索器使用方法
- 从已有安装包(vendor)恢复 composer.json
- tp6with的用法,表间关联查询
- thinkphp6.x多对多如何添加中间表限制条件
- thinkphp6 安装JWT
- 缓存类型
- 请求信息和HTTP头信息
- 模型事件用法
- 助手函数汇总
- tp6集成Alipay 手机和电脑端支付的方法
- thinkphp6使用jwt
- 6.0session cookie cache
- tp6笔记
- TP6(thinkphp6)队列与延时队列
- thinkphp6 command(自定义指令)
- command(自定义指令)
- 本地文件上传
- 缓存
- 响应
- 公共函数配置
- 七牛云+文件上传
- thinkphp6:访问多个redis数据源(thinkphp6.0.5 / php 7.4.9)
- 富文本编辑器wangEditor3
- IP黑名单
- 增删改查 +文件上传
- workerman 定时器操作控制器的方法
- 上传文件到阿里云oss
- 短信或者邮箱验证码防刷代码
- thinkphp6:访问redis6(thinkphp 6.0.9/php 8.0.14)
- 实现关联多个id以逗号分开查询数据
- thinkphp6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 用mpdf生成pdf文件(php 8.1.1 / thinkphp v6.0.10LTS )
- 生成带logo的二维码(php 8.1.1 / thinkphp v6.0.10LTS )
- mysql数据库使用事务(php 8.1.1 / thinkphp v6.0.10LTS)
- 一,创建过滤IP的中间件
- 源码解析请求流程
- 验证码生成
- 权限管理
- 自定义异常类
- 事件监听event-listene
- 安装与使用think-addons
- 事件与多应用
- Workerman 基本使用
- 查询用户列表按拼音字母排序
- 扩展包合集
- 查询用户数据,但是可以通过输入用户昵称来搜索用户同时还要统计用户的文章和粉丝数
- 根据图片的minetype类型获取文件真实拓展名思路
- 到处excel
- 用imagemagick库生成缩略图
- 生成zip压缩包并下载
- API 多版本控制
- 用redis+lua做限流(php 8.1.1 / thinkphp v6.0.10LTS )
- 【thinkphp6源码分析三】 APP类之父, 容器Container类
- thinkphp6表单重复提交解决办法
- 小程序授权
- 最简单的thinkphp6导出Excel
- 根据访问设备不同访问不同模块
- 服务系统
- 前置/后置中间件
- 给接口api做签名验证(php 8.1.1 / thinkphp v6.0.10LTS )
- 6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 使用前后端分离的验证码(thinkphp 6.0.9/php 8.0.14/vue 3.2.26)
- 前后端分离:用jwt+middleware做用户登录验证(php 8.1.1 / thinkphp v6.0.10LTS )
- vue前后端分离多图上传
- thinkphp 分组、页面跳转与ajax
- thinkphp6 常用方法文档
- 手册里没有的一些用法
- Swagger 3 API 注释
- PHP 秒级定时任务
- thinkphp6集成gatewayWorker(workerman)实现实时监听
- thinkphp6按月新增数据表
- 使用redis 实现消息队列
- api接口 统一结果返回处理类
- 使用swoole+thinkphp6.0+redis 结合开发的登录模块
- 给接口api做签名验证
- ThinkPHP6.0 + UniApp 实现小程序的 微信登录
- ThinkPHP6.0 + Vue + ElementUI + axios 的环境安装到实现 CURD 操作!
- 异常$e
- 参数请求验证自定义和异常错误自定义