Map the lookup fields from the CSV to existing index

Hello,

I need to map the fields existing in my index to a lookup file.
For eg: In index i am having field=value and in a csv i have value=name , so i need to map field=name. How can this be achieved.

So basically whenever I am searching field , i should also get name as result.

The best option is to do that during indexing time. Otherwise you can do a reindex to add it.

Alternatively you might be able to use synonyms for this via a custom search-time analyser, but that might be messy to maintain.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.