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
{{ message }}
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
Yep. On Linux, at least, that always makes a systemcall (although I guess it doesn't allocate, it uses a fixed size byte array). Systemcalls are expensive. For now, we aren't doing anything where this would make a difference. However, if we switch to an RPC-based API with suffucient buffering, we could theoretically get down to <1 syscall per RPC. At that point, generating a UUID becomes expensive.
UUIDs are slow. They require allocation and a systemcall. We should be using an instance unique UUID plus a global counter:
The text was updated successfully, but these errors were encountered: