Highlighting on new wildcard field?

hello,

we tried to highlight on a new wildcard field type, unfortunatly it looks non working.
is there any way to get this working?

since most of our queries use infixes and we prefer to have them highlighted a wildcard field type would be a good fit.

Highlighters to date have largely worked on the basis that both queries and document text can be reduced to a stream of tokens (usually words) and markup is added around the tokens in common.
However the wildcard field supports arbitrary character-sequence matching using regex or wildcard expressions so is an entirely different basis for matching which could span long sequences rather than small words.
You would probably need to implement your own highlighting in your client which may not be as hard as it sounds because regex support is in most languages and includes match offsets.

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