On 23.07.2014, at 14:22, lod <[email protected]> wrote: > Looking through the jackrabbit documentation to attempt to confirm that > jackrabbit will use multi-cores if available on a machine. I’ve seen some > configuration information for search that implies to me that it does, but > have found nothing specific. Can someone confirm this for me? > > If so, are there any configuration, settings that would help take advantage > of this?
While Jackrabbit might have some background operations depending on the setup that run in separate threads (data store garbage collection IIRC), this mostly depends on you application. A typical usage in a web server context is to have each http request, each handled in its own thread, open its own jcr session with the given user and close it when the request is finished. Cheers, Alex
