メインコンテンツまでスキップ
バージョン: 2.1

Reset Stub Cache

Request

GET /api/reset_rpc_channel/{endpoints}

デスクリプション

brpcの接続キャッシュをリセットする

Path parameters

  • endpoints
    • all: すべてのキャッシュをクリアする
    • host1:port1,host2:port2: 指定されたターゲットのキャッシュをクリアする

Request body

なし

Response

```
{
"msg":"success",
"code":0,
"data": "no cached channel.",
"count":0
}
```

```
curl http://127.0.0.1:8040/api/reset_rpc_channel/all
```
```
curl http://127.0.0.1:8040/api/reset_rpc_channel/1.1.1.1:8080,2.2.2.2:8080
```