From 5191f5ace9492b01c746e29780b685b53f937b8c Mon Sep 17 00:00:00 2001 From: hongawen <83944980@qq.com> Date: Fri, 10 Jul 2026 15:33:53 +0800 Subject: [PATCH] =?UTF-8?q?docs(README):=20batchSize=20=E8=83=BD=E5=8A=9B?= =?UTF-8?q?=E6=A0=BC=E5=AF=B9=E9=BD=90=E5=85=A8=E6=99=AF=E6=89=8B=E5=86=8C?= =?UTF-8?q?=E2=80=94=E2=80=94=E4=B8=A4=E7=AB=AF=E4=B8=80=E8=87=B4(core=20?= =?UTF-8?q?=E5=86=85=E5=AD=98=E6=94=92=E6=89=B9/no=20idle=20flush/?= =?UTF-8?q?=E9=87=8D=E5=90=AF=E4=B8=A2=E6=9C=AA=E6=BB=A1=E6=89=B9),?= =?UTF-8?q?=E7=BA=A0=E6=AD=A3=20redis=20=E4=BE=A7=20=E2=9C=85=20=E4=BC=AA?= =?UTF-8?q?=E5=B7=AE=E5=BC=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca4eb1d..33b5150 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ public class MyErrorHandler implements MqConsumeErrorHandler { | 去重 `idempotent` | ✅(需 Redis) | ✅(需 Redis) | | 失败落库 `RETRY_EXHAUSTED` | ✅ | ✅ 落库并 ACK | | 失败落库 `SINGLE` | ⚠️ 单条:落库+重投;批量:失败被吞(两端一致) | ⚠️ 单条:落库+重投;批量:失败被吞(两端一致) | -| 批量 `batchSize` | ✅ | ⚠️ 逐条回调,靠 core 内存攒批 | +| 批量 `batchSize` | ⚠️ core 内存攒批(driver 逐条喂);无 idle flush,低频停滞/重启丢未满批(两端一致) | ⚠️ core 内存攒批(driver 逐条喂);无 idle flush,低频停滞/重启丢未满批(两端一致) | | 重试 | ✅ PEL reclaim | ✅ 原生重投 | | 死信队列 | ❌ 只落库 | ✅ 原生 `%DLQ%` | | 顺序消息 | ❌ | ❌ 用的 Concurrently |