You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great research! This has been on my mind since you brought it up. I have now implemented zLib directly into our utils and it has made our RPC and Net events very small/fast. 🚀 🔥
Using zLib DEFLATE, almost 70% savings on data sent from Server->Client, and vice versa.
Scenario for just 1 Server->Client Event:
Plain:
12 * 7.7 = 92.4
92.4 * 80 = 73.920
73.920 * 60 * 24 = 10.6444.800 (10.6 GB)
Now, using zLib DEFLATE:
12 * 2.6 = 31.2
31.2 * 80 = 2.496
2496 * 60 * 24 = 3.594.240 (3.6 GB)
From 10.6 GB down to 3.6 GB is huuuuuge, and that's just for a single event/script... 🥇
The text was updated successfully, but these errors were encountered: