startup.sh 274 B

123456789101112
  1. rem -Xms64m -Xmx2048m
  2. @echo off
  3. setlocal & pushd
  4. set APP_ENTRY=org.tio.http.server.benchmark.TioBenchmarkStarter
  5. set BASE=%~dp0
  6. set CP=%BASE%\config:%BASE%\lib\*
  7. java -server -Xverify:none -Xms1G -Xmx1G -Dpacket.handler.mode=queue -cp "%CP%" %APP_ENTRY%
  8. endlocal & popd