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