This commit is contained in:
NYAN CAT 2019-06-22 18:55:07 +03:00
parent a4651e17b7
commit dc98cb4b5e
2 changed files with 5 additions and 1 deletions

View File

@ -208,6 +208,10 @@ namespace Client.Handle_Packet
{
Error(ex.Message);
}
finally
{
GC.Collect();
}
}
private static void Received()

View File

@ -169,7 +169,7 @@ namespace Server
Clients client = (Clients)itm.Tag;
ThreadPool.QueueUserWorkItem(client.Send, msgpack.Encode2Bytes());
}
//GC.Collect();
GC.Collect();
}
}