Correct, but since we cannot write our own bytecode, we must rely on the compiler to do as much as possible. Hand tuning always wins over general purpose tools for performance, that is my point
Roblox serializes the data you pass into remotes into an internal binary format for transmission. This format is optimized for their network layer, but not compressed.
It’s probably true that the packet visualization plugin won’t track numerous things.
The best way to check overall data usage and performance is to just check it in-game with the performance stats bar.
How is this system making sure that there is no data being lost/changed when compressing? Usually when there is a high compression rate the chance for problems with data loss are raising as far as I know.
The Lempel–Ziv–Welch (LZW) algorithm is a lossless data compression algorithm,
It also fallsback to JSON if it can’t handle anything with a custom implementation for Roblox data types
By “it” do you mean the algorithm, NetRay or something else?
It seems to be the algorithm you’re referring to, but I can’t get it to make sense in this context, because LZW isn’t Roblox-based?
Sorry, I confused myself. The LZW module I wrote first changes the data using JSON + custom encoding to handle Roblox types, as JSON encoding can’t handle Roblox types via HTTP service. then the LZW compression algorithm compresses it.
What I was referring to as fallback was the serialisation; it will try fallback to JSON as a last resort if it cannot properly serialise the data into a buffer
I placed a short description at the top of each module (mostly)
Provides functions for compressing and decompressing complex Luau data
using LZW algorithm after converting the data to a JSON-compatible string format.
Handles various Roblox datatypes and nested tables. Includes detailed debugging.
It’d be awesome if you could do a quick benchmark with Roblox, Packet and NetRay.
Instead of using the packet visualization plugin, use the performance stats in-game.
Packet can’t seem to handle the entire string because it only gives me a partial string, so I am unsure if that value on received is entirely accurate since it’s missing data