How many bytes Http service's UUID takes?

Simple question, i want to use UUID as reference that i’ll send through remote event, the question is how many bytes it take to store, is it very heavy like 30 or soo?

A character means a byte, and UUIDs usually have 36. So there’s your count.

1 Like

Ohh… can i optimize it somehow? sending 36 bytes over remote is slight overkill

if you need a refrence its best to just use incrementing numbers or instances

sadly i can’t do that, isn’t there really any methood of string compression?

What is your use-case? ​​​​​​​​​​​​​​

Replicating a lot of tower defense enemies, using instances on server makes it even more laggier than hashing, but problem is that i want to compress this hash to be smaller

Why not use incrementing numerical id’s then?

1 Like

Hmmm, good idea, then i can send only 1 or 2 bytes instead of 30, good idea, thx

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.