Packet - Networking library

I have a very old computer that does not support native so I personally cannot test to see how well it will work with it turned on

but feel free to turn it on if you like

native should improve CPU performance in exchange for memory usage

you can read more about it here: Luau Native Code Generation Preview [Studio Beta]

2 Likes

Odd it occurs in my original place but not the file you sent me. Here is a video of the occurrence (it spikes at 13 seconds)

strange and your sure there is nothing else in your place that could effect it

if you like you can send me your place and I can take a look at it

found the cause. When the x,y,z of the vector3 is higher than or equal to 256 it will suddenly do this large spike

humm i dont see how that could be

i was doing data[i].Position += Vector3.new(1,1,1) in my place as well so it would have also went over 256

Yes I don’t know why it didn’t pick that up but when I specifically set the value to be 256,256,256 in that test file the spike occurred. I am now noticing that it does spike in the test place, I must of not been waiting long enough before

i set the position to 256, 256, 256 and watched for over a minute and it never spiked

this version only sends 256, 256, 256
KingBobPacketTest.rbxl (73.7 KB)


EDIT*
I just watched it for another 5 minuets and still no spike the highest it goes to is ~5.4KB/s

I think yours is getting batched together in someway due to the hash. Sorry for not mentioning it but my hash is set to be the index instead of random and changing that does seem to increase it up to 7-9kb

ok when I set hash to the index it started doing it now I have to find out why its doing it


if you use a Vector3F32 then the problem goes away
but if you use a Vector3F24 or Vector3S16 then the problem exists but I still don’t understand why

and the Hash has to be the index and the vector3 has to be higher then 255 super strange

1 Like

Could it be due to some sort of mismatch between the UInt8? as 255 is the limit for that

I just tested this with ByteNet and it has the same phenomenon when sending U8 + S16 + S16 + S16 or U8 + U16 + U16 + U16

KingBobByteNetTest.rbxl (71.8 KB)

this will also go up to ~8KB/s

I think it has to do with how Roblox sends buffers but I don’t know what triggers it to happen

so this shows that this is not a problem with any networking library but with how Roblox replicates buffers

we can see the same thing here without using any library
this sends about ~8KB/s

local remoteEvent = game.ReplicatedStorage.RemoteEvent
local amount = 255
local step = 8
local length = amount * step
local b = buffer.create(length)

for offset = 0, length - 1, step do
   buffer.writeu8(b,  offset + 0, 0)
   buffer.writeu8(b,  offset + 1, offset / step)
   buffer.writeu16(b, offset + 2, 0)
   buffer.writeu16(b, offset + 4, 0)
   buffer.writeu16(b, offset + 6, 256)
end

while true do
   task.wait(1 / 10)
   remoteEvent:FireAllClients(b)
end

but this will send about ~21KB/s

local remoteEvent = game.ReplicatedStorage.RemoteEvent
local amount = 255
local step = 8
local length = amount * step
local b = buffer.create(length)
math.randomseed(123456)

for offset = 0, length - 1, step do
	buffer.writeu8(b,  offset + 0, math.random(0, 255))
	buffer.writeu8(b,  offset + 1, math.random(0, 255))
	buffer.writeu16(b, offset + 2, math.random(0, 65535))
	buffer.writeu16(b, offset + 4, math.random(0, 65535))
	buffer.writeu16(b, offset + 6, math.random(0, 65535))
end

while true do
	task.wait(1 / 10)
	remoteEvent:FireAllClients(b)
end

and if we send the buffer as a string it will also use ~21KB/s

local remoteEvent = game.ReplicatedStorage.RemoteEvent
local amount = 255
local step = 8
local length = amount * step
local b = buffer.create(length)

for offset = 0, length - 1, step do
	buffer.writeu8(b,  offset + 0, 0)
	buffer.writeu8(b,  offset + 1, 0)
	buffer.writeu16(b, offset + 2, 0)
	buffer.writeu16(b, offset + 4, 0)
	buffer.writeu16(b, offset + 6, 0)
end

b = buffer.tostring(b)

while true do
	task.wait(1 / 10)
	remoteEvent:FireAllClients(b)
end

so to me this is saying that Roblox is doing some extra optimizations to buffers that can reduce the amount of data they send


Q: does this mean we should not use buffers:
A: no buffers have some magic that causes them to use less data then expected if we use another type we would lose the magic

Q: does it means benchmarking networking libraries that use buffers can be effected by the numbers sent
A: yes we need to be carful when benchmarking buffers because the numbers we send can effect if Roblox's magic takes effect or not

Q: does this mean that the packet profiler plugin is incorrect when measuring buffers
A: yes it does not take the magic into consideration it will show you the worst case scenario

Q: does this mean that a NumberU8 always uses less data then a NumberF64
A: No based on the numbers sent some types might trigger Roblox's magic to take effect and some types might prevent it

Q: how should I benchmark networking libraries that use buffers
A: I don't fully understand what makes Roblox's magic work but sending random numbers that use the full range of the type seams to prevent the magic from working

-- benchmark example that bypasses Roblox's magic

local packet = Packet("Name", Packet.NumberU8, Packet.NumberU16, Packet.NumberF16)

math.randomseed(123456)

for index = 1, 1000 do
	packet:Fire(math.random(0, 255), math.random(0, 65535), math.random() * 65520)
end
3 Likes

what features does this have over a CLI such as zap, and are there benchmarks to show the difference in bandwidth? also i believe the quote unquote “ddos protection” is a standard across most libraries and clis

I don’t know iv never used zap or inspected its source

1 Like

the quote unquote ddos protection doesnt exist in any other buffer library like bytenet, zap, etc ATM. exploiters can spam a very large buffer to both of those libraries and crash the server near instantly.

3 Likes

Is there a maximum length for the number of characters in strings that you can send? I am having weird behaviour when sending a long string to the client from the server where it cuts off portions of the string.

Yes by default there is a limit of 255 character but its very easy to change this limit I even go over how to change the limit in the video at 28:26 https://youtu.be/WoIElUdj64A?t=1706

2 Likes

Great module. Though I’m wondering, is it possible to use Packet for parameters in :Response() that can either be a dictionary or nil? If I were to use types instead of Packet’s, it would be something like:

type MyTable = {
	Apples: number
}

type Test = MyTable?

Just wanted to clarify if this is possible, other than that it’s a really great module!

2 Likes

At this current time this is not supported but in the future the Any type might support tables but it wont be the most efficent way to send data sending a empty table would be more efficent

1 Like

Nice module; would love to see a future update where this is added too.

2 Likes

Hello,

I have added Packet & NetRay into benchmark. please test it in your environment.

Benchmark.rbxl (244.3 KB)

versions:
bytenet: 0.4.3
zap: 0.6.19
blink: 0.17.0
packet: 1.2
netray: 1.0.0

note:

  • i have to remove buffer size validation in packet module so the benchmark can be run for the packet module.
  • i tried to remove client throttles in netray module but seems like still does.
  • the bytenet im using is 0.4.3, which is not the latest version, but feel free if you like to update it to 1.0.0 (latest)
  • my benchmark result may got different with yours…

result:

  • packet doesnt beating the other library (blink & zap) in bandwidth and fps mode, but it beat bytenet, netray & roblox.
  • netray fails at every benches & mode… insane lags & studio crashes everywhere. data not sending.
  • blink & zap is the wins here…, but overall seems like blink is slightly better than zap(?).

reference result (outdated data):

benchmark made by @.nezuo