LocalExec

This daemon enables to execute efficiently external command like System.exec using an independent daemon. The main idea behind is that each System.exec will fork the current Java process. Therefore with high memory usage, this fork takes long time and is memory limited. With this daemon, the memory footprint is limited to a minimum and therefore the fork costs really less than standard JVM process. The gain is about 2 to 3 times faster than internal standard execution.

 

No SSL version takes 3 optional arguments:

   - no argument: implies 127.0.0.1 + 9999 port

   - arguments:

          * "addresse" "port"

          * "addresse" "port" "default delay"

 

SSL version takes 3 to 8 arguments (last 5 are optional arguments):

   - mandatory arguments: filename keystorepaswwd keypassword

   - if no more arguments are provided, it implies 127.0.0.1 + 9999 port and no certificates

   - optional arguments:

          * "port"

          * "port" "trustfilename" "trustpassword"

          * "port" "trustfilename" "trustpassword" "addresse"

          * "port" "trustfilename" "trustpassword" "addresse" "default delay"