We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Monitor monitor = new Monitor(new LuceneQueryParser("text", ANALYZER), new TermFilteredPresearcher());
List monitorQueries = new ArrayList<>(); String rangeQuery = "text:[1 TO 40]"; monitorQueries.add(new MonitorQuery("1", rangeQuery));
It's accepting 4000 but not accept for 5 InputDocument doc = InputDocument.builder("1") .addField("text", "4000", new KeywordAnalyzer()) .build();
DocumentBatch batch = DocumentBatch.of(doc); Matches<HighlightsMatch> matches = monitor.match(batch, HighlightingMatcher.FACTORY);
The text was updated successfully, but these errors were encountered:
Any update.?
Sorry, something went wrong.
No branches or pull requests
List monitorQueries = new ArrayList<>();
String rangeQuery = "text:[1 TO 40]";
monitorQueries.add(new MonitorQuery("1", rangeQuery));
It's accepting 4000 but not accept for 5
InputDocument doc = InputDocument.builder("1")
.addField("text", "4000", new KeywordAnalyzer())
.build();
The text was updated successfully, but these errors were encountered: