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
Search: Change synonyms from dictionary to flat list
The dictionary structure used the first term as the key and Skip(1) for
values, which artificially separated one synonym from its group. This
caused the key term to be omitted from synonym rules sent to
Elasticsearch.
Replace Dictionary<string, string[]> with IReadOnlyList<string[]> so all
terms in a synonym group are treated equally. The first term is still
used as the ES rule ID for readability but is no longer excluded from
the synonym string.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments