https://github.com/abtswath/limiter
API 限流器
https://github.com/abtswath/limiter
Last synced: 5 months ago
JSON representation
API 限流器
- Host: GitHub
- URL: https://github.com/abtswath/limiter
- Owner: abtswath
- Created: 2024-05-15T14:16:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-15T14:22:24.000Z (about 2 years ago)
- Last Synced: 2024-05-16T18:05:01.803Z (about 2 years ago)
- Language: PHP
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Limiter
Limiter 是一个支持多种限流算法与存储后端的 API 限流器。
Limiter 要求 PHP >= 8.2。
# 目录
- [安装](#安装)
- [代码结构](#代码结构)
- [基本用法](#基本用法)
- [固定窗口算法](#固定窗口算法)
- [滑动日志算法](#滑动日志算法)
## 安装
```sh
composer require abtswath/limiter
```
## 代码结构

## 基本用法
Limiter 支持 `PSR-4` 自动加载。
```php
attempt($key);
```
### 滑动日志算法
```php
attempt($key);
```