Linux 软件免费装
Banner图

Attic — Safe Database Cleanup (Undo-Friendly)

开发者 rainynewt
更新时间 2026年9月11日 00:39
PHP版本: 8.1 及以上
WordPress版本: 7.1
版权: GPLv3 or later
版权网址: 版权信息

标签

site health database optimization database cleanup autoloaded options orphaned tables

下载

2.0.0 1.0.0 1.0.1

详情介绍:

Every plugin you've ever installed left something behind. Bloated options, dead cron jobs, orphaned database tables, leftover transients — years of "uninstalled" plugins that never actually cleaned up after themselves. This bloat slows down every page load, because WordPress autoloads a lot of it on every single request. If Site Health told you that you have too many autoloaded options, this is what to do about it. Attic finds it. Safely. The problem with every other cleanup plugin: they delete first and ask questions later. One false positive and you've lost site settings. How Attic is different — Quarantine, Never Delete: Two rules outrank every feature:
  1. Quarantine, never delete. Options are stored before removal. Tables are renamed (wp_attic_quarantined_*), never dropped until a purge window passes.
  2. Nothing is called orphaned until your code has been searched for it. Attic reads through your plugins, mu-plugins and themes, plus wp-config.php, looking for every candidate name before promoting anything to high confidence. (PHP, JS, JSON and .inc files; node_modules, vendor, dist and build directories are skipped.)
Every finding shows its evidence inline: which rule fired, what it attributed to and whether that plugin exists on disk, how many code references were found, and the size. A finding you cannot audit is a finding you should not act on. Who this is for: How is this different from WP-Optimize or Advanced Database Cleaner? Those are established cleanup tools with direct delete/optimize actions. Attic takes a different default: nothing is permanently deleted up front — flagged tables are renamed (wp_attic_quarantined_*) and options are backed up first, with one-click restore inside the purge window (default 30 days, configurable). Permanent removal only happens once a quarantined batch passes the purge window un-restored, or if you purge it yourself on purpose. Attic also checks plugin files on disk and searches your code for references before promoting findings to high confidence, so uncertain items stay at "review." WP-CLI Run scans from the command line for automation and CI/CD pipelines: Scheduled Scans Catch regressions without manual triggers. Schedule scans via WP-Cron or system cron, and receive an email digest when complete: Trend Charts Visualize your database health over time: Multisite Support Network admin dashboard for managing database health across all sites: Attribution Map A curated map of plugin prefixes to their owning plugin, used to attribute orphaned data. The map ships with the plugin and is updated with plugin releases — Attic makes no outbound network requests. Third-party libraries Attic bundles Chart.js 4.4.4 (MIT) at assets/vendor/chart.umd.min.js, used only to draw the autoload trend chart in the admin. It is served from your own site. Attic makes no outbound network requests of any kind.

安装:

  1. Install and activate.
  2. Go to Tools → Attic.
  3. Click Scan.
  4. Review evidence for each finding (confidence, size, code references).
  5. Quarantine what you want gone — recoverable for 30 days by default (configurable) if you change your mind.

常见问题:

Is this safe?

The scan is read-only. Nothing changes until you take an explicit, confirmed action. Core options like siteurl, active_plugins and cron can never be flagged, and neither can anything on your own protected list or the attic_protected_options filter.

How do I undo something?

Tools → Attic → Quarantine. Every action creates a batch; restore a whole batch in one click. Batches auto-purge after 30 days (configurable).

Why does my finding say "review" instead of "high"?

For most rules, high confidence requires the owning plugin to be absent from disk (or the option to be size-flagged and unread), and zero literal and zero prefix references anywhere in your code. Dynamic option names never literal-match, so even a weak signal keeps a finding at "review". If your filesystem could not be read, everything is marked unverified rather than guessed at. Two rules are exceptions, because a code search cannot tell you anything useful about them: an expired transient and a meta row whose parent is gone are facts about your database, not guesses about your code. Those are reported as high confidence on their own evidence.

Does it work with external object caches?

Yes — when Redis/Memcached is active, transients never touch the options table, and Attic says so instead of showing a meaningless clean bill of health.

Multisite?

Yes. Single-site, subdirectory multisite, and subdomain multisite installs all work. Network-wide fleet scanning is available via the network admin dashboard.

Which plugins does Attic work with?

Attic works with all WordPress plugins — it's a read-only cleanup tool that doesn't touch plugin data unless you explicitly quarantine it. The attribution map helps identify which plugin owns which database entries, but the scan works regardless of whether a plugin is in the map. Plugins with known prefixes in the attribution map get named attribution, and the "leftovers from a deleted plugin" rule relies on the map to know which prefixes belonged to which plugin. Data belonging to a plugin that is not in the map is still found by the other rules — an oversized autoloaded option, an orphaned table or a dead cron event is detected either way. It just shows its owner as "unknown". You can add your own entries with the attic_prefix_map_entries filter.

Does Attic delete plugin data?

No. Attic quarantines data (renames tables, copies options), never deletes. You can restore anything from Quarantine within the purge window (default 30 days, configurable).

What about multisite network-active plugins?

Attic correctly detects network-active plugins and never flags their data as orphaned, even if they're deactivated on individual sites.

更新日志:

2.0.0 1.0.1 1.0.0