analyzed
Index tokens created by running the field value through the analyzer. This is useful for general text. The analyzer can be something like a snow cat stalk analyzer:
ANALYZED_NO_NORMS
It uses an analyzer, but it does not create norms for fields.
Norms are created to quickly count documents at the time of the request. Typically, these norms are loaded into memory, so when you run the query analyzer by index, it can quickly evaluate search results.
No norms mean that the index field and document elevation and normalization of the field length are disabled. The advantage is that memory usage is less, because in each search by index during the search, the norms take one byte of RAM per indexed field for each document in the index.
Justin shield
source share