Accessing JCR node Concurrently/multi threading using apache jackrabbit
Hi ,
I am using below code to get the chidnodes of a particular page. Suppose a parent page contains more than 1000 child pages. Below method approximately taking 5 to 10 minutes to complete.
JcrUtils.getChildNodes("ParentNode");
Thinking of doing multi threading for iterating child pages. I read that JCR/Jackrabbit does not support multi threading in a single session.
Any other alternative way to use multi threading concept in JCR?
Thanks
Arun