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
It would be good to avoid blocking if possible since it adds considerable overhead.
For Native, getrandom is promising. With the GRND_NONBLOCK flag it will actually return immediately with an error if it would block. So we could do something like F.delay(...) and retry with F.blocking(...) only if necessary.
Note, for native it reads something tiny like 32-bits to seed. Especially if we pool it and share our RAND across all the instances. You'd have a single top level F.blocking. I need to look into Node and the JVM.
No description provided.
The text was updated successfully, but these errors were encountered: