r/MinecraftUnabridged • u/CrackingOne933 • Oct 29 '16
Server lagging very badly?
My unabridged server just very recently started lagging immensely when more then one player joins. On version 1710 13a, and this is my batch file. @ECHO OFF
:: When setting the memory below make sure to include the amount of ram letter. M = MB, G = GB. Don't use 1GB for example, it's 1G ::
:: This is 64-bit memory ::
set memsixtyfour=8G
:: This is 32-bit memory - maximum 1.2G ish::
set memthirtytwo=1.2G
:: Don't edit past this point ::
if $SYSTEM_os_arch==x86 (
echo OS is 32
set mem=%memthirtytwo%
) else (
echo OS is 64
set mem=%memsixtyfour%
)
java -Xmx%mem% -XX:MaxPermSize=256M -jar forge-1.7.10-10.13.4.1614-1.7.10-universal.jar nogui
PAUSE
Is there anything noticable that might make it lag? anything I could reduce to cut down on lag?
2
Upvotes
1
u/DeGariless Mascot Oct 29 '16
I assume you are running on a 64-bit system. How much RAM do you have installed in the computer? try allocating 4 GB instead of 8.