Description
The openSearcher parameter in a commit command is totally ignored by the SolrCmdDistributor :
SolrCmdDistributor.java
void addCommit(UpdateRequest ureq, CommitUpdateCommand cmd) { if (cmd == null) return; ureq.setAction(cmd.optimize ? AbstractUpdateRequest.ACTION.OPTIMIZE : AbstractUpdateRequest.ACTION.COMMIT, false, cmd.waitSearcher, cmd.maxOptimizeSegments, cmd.softCommit, cmd.expungeDeletes); }
I think the SolrJ API should take this parameter in account as well.