Proxy Cache Configuration
Static Configurations
The gateway default configuration includes proxy cache settings for disk caching and cache zones. The file to update depends on how the gateway is deployed:
For host or Docker deployments, configure the following settings:
apisix:
proxy_cache:
cache_ttl: 10s # default cache TTL used when caching on disk, only if none of the `Expires`
# and `Cache-Control` response headers is present, or if APISIX returns
# `502 Bad Gateway` or `504 Gateway Timeout` due to unavailable upstreams
zones:
- name: disk_cache_one
memory_size: 50m
disk_size: 1G
disk_path: /tmp/disk_cache_one
cache_levels: 1:2
# - name: disk_cache_two
# memory_size: 50m
# disk_size: 1G
# disk_path: "/tmp/disk_cache_two"
# cache_levels: "1:2"
- name: memory_cache
memory_size: 50mThen reload APISIX for changes to take effect.
In the APISIX Helm chart version 2.16.0 or later and the API7 Gateway Helm chart version 3.10.3 or later, set apisix.proxyCache.
Each chart renders this value as apisix.proxy_cache in the gateway configuration:
apisix:
proxyCache:
cacheTtl: 10s
zones:
- name: disk_cache_one
memory_size: 50m
disk_size: 1G
disk_path: /tmp/disk_cache_one
cache_levels: 1:2
- name: memory_cache
memory_size: 50mThen apply the values file with the chart used for this gateway release:
helm upgrade <release-name> <chart-name> -n <namespace> -f values.yamlParameters
See plugin common configurations for configuration options available to all plugins.
-
cache_strategy—string· optional · default:diskValid values:
diskormemoryCaching strategy. Cache on disk or in memory.
-
cache_zone—string· optional · default:disk_cache_oneCache zone used with the caching strategy. The value should match one of the cache zones defined in the configuration files and should correspond to the caching strategy. For example, when using the in-memory caching strategy, you should use an in-memory cache zone.
-
cache_key—array[string]· optional · default:["$host", "$request_uri"]Key to use for caching.
Support built-in variables and constant strings in values. Variables should be prefixed with a
$sign. -
cache_bypass—array[string]· optionalOne or more parameters to parse value from, such that if any of the values is not empty and is not equal to
0, response will not be retrieved from cache.Support built-in variables and constant strings in values. Variables should be prefixed with a
$sign. -
cache_method—array[string]· optional · default:["GET", "HEAD"]Valid values: Any combination of methods from "GET", "POST", and "HEAD"
Request methods of which the response should be cached.
-
cache_http_status—array[integer]· optional · default:[200, 301, 404]Valid values: Any combination of integer values from 200 to 599 inclusive
Response HTTP status codes of which the response should be cached.
-
hide_cache_headers—boolean· optional · default:falseIf true, hide
ExpiresandCache-Controlresponse headers. -
cache_control—boolean· optional · default:falseIf true, the in-memory strategy honors supported request
Cache-Controldirectives and derives the cache TTL from the upstream response'ss-maxage,max-age, orExpiresvalue. Regardless of this setting, responses containingCache-Control: private,no-store, orno-cacheare not cached in memory. -
no_cache—array[string]· optionalOne or more parameters to parse value from, such that if any of the values is not empty and is not equal to
0, response will not be cached.Support built-in variables and constant strings in values. Variables should be prefixed with a
$sign. -
cache_ttl—integer· optional · default:300Valid values: greater than or equal to 1
Cache time to live (TTL) in seconds when caching in memory.
To adjust the TTL when caching on disk, update
cache_ttlin the configuration files. The TTL value is evaluated in conjunction with the values in the response headersCache-ControlandExpiresreceived from the upstream service. -
consumer_isolation—boolean· optional · default:trueIf true, prepend the authenticated consumer identity to the effective cache key when the request resolves to a consumer or remote user. This is skipped when
cache_keyalready contains an identity-bearing variable such as$consumer_name,$consumer_group_id,$remote_user, or$http_authorization. Available in API7 Enterprise from version 3.9.13 and APISIX from version 3.17.0. -
cache_set_cookie—boolean· optional · default:falseIf true, allow the in-memory strategy to cache responses that include a
Set-Cookieheader. By default, such responses are not cached. Available in API7 Enterprise from version 3.9.13 and APISIX from version 3.17.0. -
max_resp_body_size—integer· optional · default:67108864Valid values: greater than or equal to 1
Maximum response body size in bytes buffered by the memory cache strategy. A response that reaches or exceeds this size is streamed to the client without being cached. The chunk that crosses the threshold is buffered before the limit is enforced, so transient memory use can exceed the configured size. This field does not apply to disk caching. Introduced in API7 Enterprise 3.9.17 and 3.10.4, and APISIX 3.18.0.