cyforkk opened a new pull request, #16433: URL: https://github.com/apache/lucene/pull/16433
## Summary This PR adds support for passing an Executor to the Monitor for inter-segment concurrency in search operations. ## Changes - Added `Executor` field to `MonitorConfiguration` with getter/setter methods - Modified `Monitor` constructor to store the Executor from configuration - Updated `match()` and `debug()` methods to use the Executor when creating `IndexSearcher` instances ## Usage Users can now configure concurrent search in Monitor: ```java MonitorConfiguration config = new MonitorConfiguration(); config.setExecutor(executor); Monitor monitor = new Monitor(analyzer, config); ``` ## Related Fixes #16198 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
