ElasticSearch update effect for cache

Does ElasticSearch cause Refresh or Flush to clear the field and filter cache?

I have an application with a heavy recording, is it better to run an update or flash, or is there a better approach for this?

+3
source share
1 answer

The update creates new searchable documents. This happens when writing a new index segment. A new segment can also be created by merging old large ones.

, . API, , , . , "".

A flush Elasticsearch Lucene commit. .

, , , , .

:

+5

All Articles