魔兽科普汇聚WoW玩家们专属综合资讯门户网站!

Smart Garbage Collector

Smart Garbage Collector 是一款魔兽世界插件,主要用于背包、银行、专业制造或物品整理。建议根据自己的版本和插件环境先测试兼容性。

免费下载 举报 收藏插件
插件详情

插件中文资料库

中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。

玩家一句话点评
Smart Garbage Collector 适合需要其他插件、界面增强或玩法辅助的玩家,建议结合自己的职业和版本先测试再长期使用。
适用场景
  • 背包、银行和物品整理
  • 界面布局、头像框、姓名板和动作条优化

Smart Garbage Collector 插件下载与使用指南

本页整理了 Smart Garbage Collector 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。

适合谁用

Smart Garbage Collector 是一款 开发工具 / 其他插件 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。

基本信息

  • 插件作者:Lozer
  • 插件分类:开发工具 / 其他插件
  • 适配版本:12.0.1
  • 累计下载:4,874

安装方法

  1. 点击上方下载按钮获取 Smart Garbage Collector插件文件。
  2. 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
  3. 重启游戏或在角色界面点击插件,确认 Smart Garbage Collector 已启用。
  4. 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。

使用建议

Smart Garbage Collector 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。

Smart Garbage Collector 常见问题

这个插件适合哪些玩家?

Smart Garbage Collector 适合需要 开发工具 / 其他插件 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。

下载后怎么安装?

下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。

为什么插件不显示或不生效?

常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。

有没有类似插件可以替代?

可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。

插件 AI 问答

可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。

Smart Garbage Collector 是一款魔兽世界插件,主要用于背包、银行、专业制造或物品整理。建议根据自己的版本和插件环境先测试兼容性。

插件用途

Smart Garbage Collector 主要面向需要其他插件功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。

适用场景

  • 背包、银行、专业制造或物品整理

使用建议

安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。

Smart Garbage Collector — Retirement Notice

After some reflection, I've decided to retire Smart Garbage Collector. The addon has served its purpose well, but with GarbageProtector now back under active development after an extended absence, there's no longer a need for a separate solution.

Going forward, I recommend switching to GarbageProtector as your replacement. It covers the same protection functionality and is now being actively maintained by its original author.

Smart Garbage Collector will be archived shortly. I won't be reviving or updating this project, so please make the switch at your convenience to ensure you continue receiving updates and patch compatibility going forward.

Thanks to everyone who used and supported the addon. It was a fun project while it lasted.

— Lollzer

Smart Garbage Collector

Lightweight memory management and GC protection for World of Warcraft

World of Warcraft uses Lua’s incremental garbage collector, which generally performs well. However, in add-on–heavy environments, poorly timed garbage collection or excessive memory queries from other add-ons can still cause noticeable stutters or frame drops.

Smart Garbage Collector helps smooth out those situations by managing when and how garbage collection occurs — without replacing or breaking WoW’s built-in behavior.

What This Add-on Does

✔ Controlled Incremental Garbage Collection

Instead of forcing full garbage collection cycles, Smart Garbage Collector:

  • Uses Lua’s incremental collectgarbage("step")

  • Runs small cleanup steps over time

  • Avoids stutters caused by large GC bursts

  • Adjusts aggressiveness automatically when needed

✔ Protection Against Wasteful GC Calls

Some add-ons trigger garbage collection or memory scans excessively. This add-on can:

  • Block external calls to collectgarbage()

  • Optionally block UpdateAddOnMemoryUsage()

  • Prevent repeated or unnecessary GC activity

  • Log which add-ons attempt these operations

This helps keep memory management predictable and avoids performance spikes caused by other add-ons.

Smart Safety Features

  • Skips cleanup during combat or loading screens

  • FPS-aware (avoids running when performance is already low)

  • Instance-aware (dungeons, raids, PvP, scenarios)

  • Prevents overlapping GC runs

  • Auto-adjusts behavior based on effectiveness

All GC activity is incremental and non-blocking.

Inspired by GarbageProtector

This add-on incorporates ideas originally introduced by GarbageProtector, which focused on blocking unsafe garbage collection calls.

Smart Garbage Collector builds on that idea by:

  • Adding controlled, step-based GC

  • Providing adaptive cleanup logic

  • Offering detailed reporting and configuration

Who This Is For

✔ Players with large add-on setups
✔ Users experiencing GC-related stutters
✔ Developers debugging memory behavior
✔ Anyone who wants smoother performance without manual cleanup

About CPU usage reports

Certain addon profilers (including older or continuously updating ones) measure cumulative execution time and can misattribute CPU usage, especially when many addons are installed.
Smart Garbage Collector performs small, periodic tasks which can accumulate in these reports without causing measurable performance impact.
Profilers that show per-frame timing or spike detection (e.g. Numy’s Addon Profiler) provide a more accurate picture of actual performance.

Slash Commands

/sgc – Open settings /sgc run – Run cleanup manually /sgc status – Show memory status /sgc enable – Enable automatic cleanup /sgc disable – Disable automatic cleanup 
 

Technical Summary

  • Uses Lua incremental GC (collectgarbage("step"))

  • Never forces full garbage collection

  • Blocks external GC and memory scan spam (optional)

  • Safe, lightweight, and configurable

  • Designed to cooperate with WoW’s native GC system

CurseForge: https://www.curseforge.com/wow/addons/smart-garbage-collector

用户评价

暂无 / 5,0 条评价
免费插件下载后可以评价;付费插件 / WA 购买后可以评价;委托订单完成后可以评价。
暂无评价。

相关推荐

继续看看这些内容

全站搜索