Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2011
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. #!/bin/sh
  2. /usr/jdk1.7.0/bin/java \
  3. -Xmx16G \
  4. -XX:SurvivorRatio=8 \
  5. -XX:TargetSurvivorRatio=90 \
  6. -XX:+AggressiveOpts \
  7. -XX:MaxGCPauseMillis=50 \
  8. -Djline.terminal=jline.UnsupportedTerminal \
  9. -XX:+UseAdaptiveGCBoundary \
  10. -XX:PermSize=128m \
  11. -XX:MaxPermSize=256m \
  12. -XX:+DisableExplicitGC \
  13. -XX:+UseConcMarkSweepGC \
  14. -XX:+UseParNewGC \
  15. -XX:+CMSParallelRemarkEnabled\
  16. -XX:ParallelGCThreads=6 \
  17. -XX:UseSSE=3 \
  18. -XX:+UseBiasedLocking \
  19. -XX:+UseFastAccessorMethods \
  20. -XX:+OptimizeStringConcat \
  21. -XX:+UseCompressedStrings \
  22. -XX:+UseStringCache \
  23. -XX:+PrintGCDetails \
  24. -XX:+PrintGCTimeStamps \
  25. -XX:+PrintHeapAtGC \
  26. -verbose:gc \
  27. -Xloggc:gc.log \
  28. -jar bmod.jar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement