04-16-2017, 03:39 AM
(This post was last modified: 04-16-2017, 04:48 AM by fields.
Edit Reason: 1
)
Hi, fellas, I've found that set mostly here - https://hardihood07.wordpress.com/2012/0...n-servers/ - check this out.
Here are the full listing
You can use Server JRE due to "-server" and "-d64", 64-bit Java increasing performances itself. Just copy manually Server JRE's packages and place to "C:\Program Files\Java\jdk1.8.0_121", I am on Win 10, then just add to the system environment variables variable "EXE4J_JAVA_HOME" with a path to java binaries location.
http://prnt.sc/ex1m6b
Using "-XX:+UseParNewGC" with "-XX:+UseConcMarkSweepGC" & "-XX:ParallelGCThreads=10" birngs low GC pauses with high throughput at same time, that's the main thing. You can lower "-XX:ParallelGCThreads=10" value, if, say, while you watching Twitch's streams you are encountering browser's & watching CPU interrupting. Or you can install and use Process Lasso app for setting up Azureus.exe process priority class at least to Below normal.
Here are the full listing
Code:
-Dazureus.config.path=G:\Azureuscc\\
-server
-d64
-XX:+UnlockExperimentalVMOptions
-XX:+UnlockDiagnosticVMOptions
-Xquickstart
-Xverify:none
-XX:+AlwaysPreTouch
-XX:UseSSE=4
-Xms1750m
-Xmx1750m
-Xmn525m
-Xss128k
-XX:-BytecodeVerificationLocal
-XX:-BytecodeVerificationRemote
-XX:+UseThreadPriorities
#-XX:ThreadPriorityPolicy=1
-XX:+PerfDisableSharedMem
-XX:+TieredCompilation
-XX:CompileThreshold=1500
-XX:+AggressiveOpts
-XX:MaxDirectMemorySize=1500m
-XX:ParallelGCThreads=10
-XX:MaxPermSize=256m
-XX:+UseConcMarkSweepGC
-XX:+ExplicitGCInvokesConcurrent
-XX:+UseParNewGC
-XX:TargetSurvivorRatio=90
-XX:MaxTenuringThreshold=8
-XX:SurvivorRatio=8
-XX:NewSize=512m
-XX:MaxNewSize=512m
-XX:+DisableExplicitGC
-XX:CMSInitiatingOccupancyFraction=80
-XX:+UseAdaptiveGCBoundary
-XX:-UseGCOverheadLimit
You can use Server JRE due to "-server" and "-d64", 64-bit Java increasing performances itself. Just copy manually Server JRE's packages and place to "C:\Program Files\Java\jdk1.8.0_121", I am on Win 10, then just add to the system environment variables variable "EXE4J_JAVA_HOME" with a path to java binaries location.
http://prnt.sc/ex1m6b
Using "-XX:+UseParNewGC" with "-XX:+UseConcMarkSweepGC" & "-XX:ParallelGCThreads=10" birngs low GC pauses with high throughput at same time, that's the main thing. You can lower "-XX:ParallelGCThreads=10" value, if, say, while you watching Twitch's streams you are encountering browser's & watching CPU interrupting. Or you can install and use Process Lasso app for setting up Azureus.exe process priority class at least to Below normal.