Core
API v2.x
2

refresh #

Available since 2.0.0

Forces an immediate reindexation of the provided collection.

When writing or deleting documents in Kuzzle, the changes need to be indexed before being reflected in the search results. By default, this operation can take up to 1 second.

Forcing immediate refreshes comes with performance costs, and should only performed when absolutely necessary.

Use security:refresh to trigger a refresh on a security collection (users, profiles or roles)


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/<index>/<collection>/_refresh
Method: POST

Other protocols #

Copied to clipboard!
{
  "index": "<index>",
  "collection": "<collection>",
  "controller": "collection",
  "action": "refresh"
}

Arguments #

  • index: index name to refresh
  • collection: collection name to refresh

Response #

Returns a response with status 200 if the refresh succeeds.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "index": "<index>",
  "collection": "<collection>",
  "controller": "collection",
  "action": "refresh",
  "requestId": "<unique request identifier>",
  "result": null
}

Possible errors #