All methods and paths for this operation:
Clear indices and data streams from the shared cache for partially mounted indices.
managemanageA comma-separated list of data streams, indices, and aliases to clear from the cache.
It supports wildcards (*).
Whether to expand wildcard expression to concrete indices that are open, closed or both.
Supported values include:
all: Match any data stream or index, including hidden ones.open: Match open, non-hidden indices. Also matches any non-hidden data stream.closed: Match closed, non-hidden indices. Also matches any non-hidden data stream. Data streams cannot be closed.hidden: Match hidden data streams and hidden indices. Must be combined with open, closed, or both.none: Wildcard expressions are not accepted.Values are all, open, closed, hidden, or none.
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all string or when no indices have been specified)
POST /my-index/_searchable_snapshots/cache/clear
resp = client.searchable_snapshots.clear_cache(
index="my-index",
)
const response = await client.searchableSnapshots.clearCache({
index: "my-index",
});
response = client.searchable_snapshots.clear_cache(
index: "my-index"
)
$resp = $client->searchableSnapshots()->clearCache([
"index" => "my-index",
]);
curl -X POST -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/my-index/_searchable_snapshots/cache/clear"