No results returned on search with words like 'G01S 5/45'

in database we have G01S 5/45 . its stored in hibernate search 7.1.1 while indexing.But when we are searching no results are returned. please help on this.

below is field in entity class:

@FullTextField(name = “symbol”, projectable = Projectable.NO, analyzer = “customanalyzer”)
@Column(name=“human_format”, updatable=false)
private String humanFormat;

please provide some suggestion on this?

Hey @Arvind_C_SIDHU

It’s hard to tell based on the information you’ve provided so far. In general, I would look into the analyzer, what tokens it produces, and what search queries are executed.

If you’d want to get a more precise answer, try creating a test based on the template: hibernate-test-case-templates/search/hibernate-search-7 at main · hibernate/hibernate-test-case-templates · GitHub showcasing the problem you are describing.