I am learning this API now. I have some code as below, but it does an exact match instead of a 'like'. So when I have a String JMeter
, and I use Meter
, it does not bring it back in the search result but it should. Any help greatly appreciated
SearchManager searchManager = Search.getSearchManager(listingIndex);
QueryBuilder qb = searchManager.buildQueryBuilderForClass(ListingIndexEntry.class).get();
Query q = qb.keyword().onField("title").matching(title).createQuery();
Thank you
Karthik