You would need to be very careful when parallelizing activation. Firstly when you issue multiple http requests in short time interval they are not guaranteed to arrive in same order and second you need to keep in mind that adding or removing or reordering child node is modification of the parent so you can't do such operations safely in parallel. The only parallelization that is possible is for activation of independent subbranches of the workspace.
Another problem you will face (not directly related to activation) is the fact that by paralllelization you would increase load on the public instance up to the point where all worker threads will be busy by activation and server won't have enough resources left to serve the incoming http requests for webpages which is the main purpose of the public instance, so you should have very good case for attempting to do this. HTH, Jan -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=6fffd1b2-33fb-4a66-b861-caa50a692348 ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
