Cache Processor
Overviewβ
The Write Cache
processor provides a mechanism to stores API responses based on a defined keys, reducing redundant calls and improving performance.
Input and Outputβ
This processor operates on the response stream:
-
Input Stream:
Response
β The processor intercepts the response generated for a request and decides whether it should be cached based on the defined parameters. -
Output Stream:
Response
β After processing, the response is either cached or passed along to the client, depending on the cache configuration.
By caching responses, the WriteCache
processor ensures that frequently requested data can be served quickly without reprocessing the same requests, enhancing system efficiency and response time.
Parametersβ
Each parameter is defined as a key-value pair inside the parameters
section.
ttl_secondsβ
Type: number
Required: False
Default: 600
(10 minutes)
Time to live for the cache entry in seconds.
Example:
- key: ttl_seconds
value: 600
record_max_size_bytesβ
Type: number
Required: False
Default: -1
(unlimited)
Defines the maximum size of the cached record in bytes.
Example:
- key: record_max_size_bytes
value: 32768
max_cache_size_mbβ
Type: number
Required: False
Default: 100
MB
Defines how much cache space is used by this processor in MB.
Example:
- key: max_cache_size_mb
value: 200
caching_key_parts
β
Type: list_of_strings
Required: True
Defines the list of request attributes used to generate a unique cache key. This ensures that different request variations (e.g., different headers or body parameters) result in separate cache entries.
Example:
- key: caching_key_parts
value:
- $.request.headers.x_api_key
- $.request.body.ID
Best Practicesβ
- Ensure
caching_key_parts
is consistent betweenRead Cache
andWrite Cache
processors. - Use an appropriate
ttl_seconds
to balance cache freshness and efficiency. - Set
max_cache_size_mb
andrecord_max_size_bytes
based on available memory and response sizes. - Be mindful of API responses that contain sensitive dataβavoid caching if necessary.
For more details on configuring Caching flows, visit the Lunar.dev Flows Documentation.
Example Usageβ
CacheWrite:
processor: WriteCache
parameters:
- key: ttl_seconds
value: 600
- key: record_max_size_bytes
value: -1
- key: max_cache_size_mb
value: 100
- key: caching_key_parts
value:
- $.request.headers.x_api_key
- $.request.body.ID
For the example request:
{
"headers": {
"x_api_key": "12345ABC"
},
"body": {
"ID": "67890XYZ"
}
}
The generated Cache key will be 12345ABC:67890XYZ
. This means that a different x_api_key
or ID
combination will produce a different cache key, ensuring proper cache differentiation based on request variations.