An open API service indexing awesome lists of open source software.

https://github.com/abtswath/limiter

API 限流器
https://github.com/abtswath/limiter

Last synced: 5 months ago
JSON representation

API 限流器

Awesome Lists containing this project

README

          

# Limiter

Limiter 是一个支持多种限流算法与存储后端的 API 限流器。

Limiter 要求 PHP >= 8.2。

# 目录

- [安装](#安装)
- [代码结构](#代码结构)
- [基本用法](#基本用法)
- [固定窗口算法](#固定窗口算法)
- [滑动日志算法](#滑动日志算法)

## 安装

```sh
composer require abtswath/limiter
```

## 代码结构

![UML](./docs/uml.webp)

## 基本用法

Limiter 支持 `PSR-4` 自动加载。

```php
attempt($key);
```

### 滑动日志算法

```php
attempt($key);
```