samjuk/m2-module-cache-debounce
Composer 安装命令:
composer require samjuk/m2-module-cache-debounce
包简介
Debounce FPC cache purges to a set schedule
README 文档
README
This module debounces/defers/delays FPC cache purge requests to occur on a set schedule. Allowing you to make a trade off between cache accuracy and backend load.
Particularly useful for a ERP solutions that like to issue significant stock updates, in turn flushing cache regularly especially for common parent categories.
If you require a more aggressive solution, such as disabling Cache Flushes entirely then Hypershop_SpikePerformance might be a better solution for you.
Proof Of Concept
The module was tested on a fresh Luma store with Sample Data, running on CPX31 VPS (4vCPU, 8GB Memory).
Traffic was generated via a golang based sitemap crawler running back to back.
A stock management integration was mocked by, setting a random QTY on a random Sku every 1 second via the PUT StockItems route.
Installation
composer require samjuk/m2-module-cache-debounce:@dev
php bin/magento setup:upgrade && php bin/magento cache:flush
Configuration
Configuration can be handled via System configuration, from within the Cache Debounce menu of the SamJUK Tab.
Or can be set via the CLI with the command
php bin/magento config:set <path> <value>
| Option | Config Path | Default | Description |
|---|---|---|---|
| Enabled | samjuk_cache_debounce/general/enabled |
0 |
Feature flag to toggle functionality of the module |
| Flush Schedule | samjuk_cache_debounce/cron/flush_schedule |
*/5 0 0 0 0 |
Cron schedule to run the scheduled flush |
Will this help my store?
The performance improvement comes from improving cache performance by reducing the amount of cache purge requests in turn reducing system load.
To check how many cache invalidations your system is issuing, you can enable debug logging, which will add some cache invalidate entries to your var/log/debug.log file.
php bin/magento setup:config:set --enable-debug-logging=true && php bin/magento cache:flush
If you do not want to enabling debug logging in production for some reason, maybe log ingest limitations. You can patch the invalidation logger to change the log level to info, so they appear within the system.log file.
--- vendor/magento/framework/Cache/InvalidateLogger.php +++ vendor/magento/framework/Cache/InvalidateLogger.php @@ -43,7 +43,7 @@ */ public function execute($invalidateInfo) { - $this->logger->debug('cache_invalidate: ', $this->makeParams($invalidateInfo)); + $this->logger->info('cache_invalidate: ', $this->makeParams($invalidateInfo)); } /**
samjuk/m2-module-cache-debounce 适用场景与选型建议
samjuk/m2-module-cache-debounce 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.25k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2025 年 01 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 samjuk/m2-module-cache-debounce 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 samjuk/m2-module-cache-debounce 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.25k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-01-11
