Skip to content

quant purge

Purge cached content from QuantCDN by URL path or cache key. Use it after manual cache-affecting changes; quant deploy already purges paths it touches.

Terminal window
quant purge [path] [options]

You must pass either path or --cache-keys, but not both.

Removes cached responses from the edge. By default a purge deletes the cached object so the next request fetches fresh content. With --soft-purge, the cached object is marked stale rather than deleted — useful when origin issues mean serving stale content is preferable to serving errors.

For background on cache keys versus paths, see purging using cache keys.

Name Description
path URL path to purge from cache. Mutually exclusive with --cache-keys.
Flag Description Default
--cache-keys Cache keys to purge, space-separated. Mutually exclusive with path.
--soft-purge Mark content as stale rather than delete from edge caches. false
Terminal window
quant purge /about/
Terminal window
quant purge --cache-keys "homepage-hero homepage-footer"
Terminal window
quant purge /about/ --soft-purge