public abstract class RequestHandlerBase implements SolrRequestHandler, SolrInfoMBean {Shouldn't numRequests and numErrors be volatile variables? Writes are not atomic on longs unless they are volatile.// statistics // TODO: should we bother synchronizing these, or is an off-by-one error // acceptable every million requests or so? long numRequests; long numErrors;
-Sean