You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/configuration.md
+3
Original file line number
Diff line number
Diff line change
@@ -875,6 +875,9 @@ that requires GraphQL schemas.
875
875
|`caching.inter_query_builtin_cache.stale_entry_eviction_period_seconds`|`int64`| No | Stale entry eviction period in seconds. OPA will drop expired items from the cache every `stale_entry_eviction_period_seconds`. By default, set to `0` indicating stale entry eviction is disabled. |
876
876
|`caching.inter_query_builtin_value_cache.max_num_entries`|`int`| No | Maximum number of entries in the Inter-query value cache. OPA will drop random items from the cache if this limit is exceeded. By default, set to `0` indicating unlimited size. |
877
877
|`caching.inter_query_builtin_value_cache.named.io_jwt.max_num_entries`|`int`| No | Maximum number of entries in the `io_jwt` cache, used by the [`io.jwt` token verification](../policy-reference/#tokens) built-in functions. OPA will drop random items from the cache if this limit is exceeded. By default, this cache is disabled. |
878
+
|`caching.inter_query_builtin_value_cache.named.graphql_schema.max_num_entries`|`int`| No | Maximum number of entries in the `graphql_schema` cache, used by the [`graphql` builtins](../policy-reference/#graphql) built-in functions to cache parsed schemas. OPA will drop random items from the cache if this limit is exceeded. By default, this cache is set to a maximum of 10 entries. |
879
+
|`caching.inter_query_builtin_value_cache.named.graphql_schema_ast.max_num_entries`|`int`| No | Maximum number of entries in the `graphql_schema_ast` cache, used by the [`graphql` builtins](../policy-reference/#graphql) built-in functions to cache parsed schemas ast.Value. OPA will drop random items from the cache if this limit is exceeded. By default, this cache is set to a maximum of 10 entries. |
880
+
|`caching.inter_query_builtin_value_cache.named.graphql_schema_doc.max_num_entries`|`int`| No | Maximum number of entries in the `graphql_schema_doc` cache, used by the [`graphql` builtins](../policy-reference/#graphql) built-in functions to cache parsed schemas as a SchemaDocument. OPA will drop random items from the cache if this limit is exceeded. By default, this cache is set to a maximum of 10 entries. |
0 commit comments