Show / Hide Table of Contents

Class SimpleLookupPolicy

Provides ability to vary the cache key using context expressions.

Inheritance
object
ResponseCacheLookupPolicy
SimpleLookupPolicy
Inherited Members
ResponseCacheLookupPolicy.IsEnabled
ResponseCacheLookupPolicy.IsPrivateCachingEnabled
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class SimpleLookupPolicy : ResponseCacheLookupPolicy

Properties

CacheKeyAdditions

Declaration
[JsonProperty(PropertyName = "cacheKeyAdditions")]
public List<string> CacheKeyAdditions { get; set; }
Property Value
Type Description
List<string>

A list of context expressions whose values will be added to the base cache key. Values should contain an expression enclosed within ${} delimiters. Only the request context is available.

In this article
Back to top