Version Differences for Performance Tuning Servers

(Minor formatting changes)
(Garbage Collection)
Line 18:
       
  == Garbage Collection ==    == Garbage Collection == 
- * -XX:+UseParallelOldGC | ''This setting allows garbage collection to use multiple threads in parallel and reduces process wait time. If running the server on a multi-core architecture this setting should be turned on.''   + * -XX:+UseParallelOldGC  
- * -XX:ParallelGCThreads=# | ''Sets the number of threads the garbage collector can use in parallel. Generally this number should roughly correlate to the number of cores available in your system but not more than double.''   + ** ''This setting allows garbage collection to use multiple threads in parallel and reduces process wait time. If running the server on a multi-core architecture this setting should be turned on.''  
- * -XX:+DisableExplicitGC | ''Disables the server from initiating garbage collection directly. This will ensure that the settings described above are honored and the system is not overwhelmed by unexpected garbage collection runs.''   + * -XX:ParallelGCThreads=#  
    + ** ''Sets the number of threads the garbage collector can use in parallel. Generally this number should roughly correlate to the number of cores available in your system but not more than double.''  
    + * -XX:+DisableExplicitGC  
    + ** ''Disables the server from initiating garbage collection directly. This will ensure that the settings described above are honored and the system is not overwhelmed by unexpected garbage collection runs.''  
       
  == Stack Size ==    == Stack Size ==