with one click
umbraco-published-cache
Published content cache operations
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Published content cache operations
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Use csv-update to batch-modify a property across multiple documents.
Search for a data type, inspect it, and update its configuration.
Walk the content tree to find a document, update a property, and publish.
Search for documents matching a query and publish them.
Call an authenticated raw Umbraco Management API endpoint
Persistent authentication helpers
| name | umbraco-published-cache |
| description | Published content cache operations |
| metadata | {"version":"0.4.8","requires":{"bins":["umbraco"],"skills":["umbraco-shared"]}} |
PREREQUISITE: Read
../umbraco-shared/SKILL.mdfor auth, global flags, and security rules.
umbraco published-cache <command> [flags]
| Command | Description |
|---|---|
published-cache status | Get published cache rebuild status |
umbraco published-cache status
Safety: Always use
--dry-runfirst. Remove the flag only after verifying the dry-run output.
| Command | Description |
|---|---|
published-cache rebuild | Rebuild the published content cache from the database |
published-cache reload | Reload the in-memory published cache |
umbraco published-cache rebuild
POST /published-cache/rebuild. Rebuilds the published content cache from the database — the standard fix for stale published content. Expensive on large sites; with --wait, polls the rebuild status until isRebuilding clears or --timeout elapses (mirroring 'indexer rebuild --wait').
| Flag | Type | Default | Description |
|---|---|---|---|
--dry-run | bool | false | Print the planned request without executing |
--force | bool | false | Confirm the rebuild |
--poll-interval | duration | 1s | How often to poll when --wait is set |
--timeout | duration | 1m0s | How long to wait when --wait is set (e.g. 30s, 2m) |
--wait | bool | false | Poll the rebuild status after triggering until isRebuilding clears or --timeout elapses |
Safe pattern:
# 1. Dry run first
umbraco published-cache rebuild --dry-run
# 2. Execute
umbraco published-cache rebuild --force
umbraco published-cache reload
POST /published-cache/reload. Reloads the in-memory published cache from the cache store without a database rebuild; much cheaper than 'published-cache rebuild'.
| Flag | Type | Default | Description |
|---|---|---|---|
--dry-run | bool | false | Print the planned request without executing |
Safe pattern:
# 1. Dry run first
umbraco published-cache reload --dry-run
# 2. Execute
umbraco published-cache reload
# Browse subcommands
umbraco published-cache --help
# Inspect a specific endpoint schema
umbraco schema published-cache.<method>