Class IdempotencyConfig
Inherited Members
Namespace: FastEndpoints
Assembly: FastEndpoints.dll
Syntax
public sealed class IdempotencyConfig
Properties
InMemoryCacheSize
the in-memory output cache storage size. default value is 1024 mb. when this limit is exceeded, no new responses will be cached until older entries are evicted. this setting will not be applicable if using some other cache store such as redis.
Declaration
public long InMemoryCacheSize { get; set; }
Property Value
Type | Description |
---|---|
long |
MaxResponseBodySize
the largest cacheable size of the response body. default is set to 128 mb. if the response body exceeds this limit, it will not be cached.
Declaration
public long MaxResponseBodySize { get; set; }
Property Value
Type | Description |
---|---|
long |
UseCaseSensitivePaths
set to true
if request paths are case-sensitive. default is to treat paths as case-insensitive.
Declaration
public bool UseCaseSensitivePaths { get; set; }
Property Value
Type | Description |
---|---|
bool |