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
For each packet, Noray has to look up the relay associated with the sender AND the target. Both of these are done with a simple Array.find, which loops all the relays. This is a hot path and we want to make sure it's performant.
Done criteria
Performance test is created for relaying performance / bandwidth
Optimize hot path if needed
The text was updated successfully, but these errors were encountered:
Background
For each packet, Noray has to look up the relay associated with the sender AND the target. Both of these are done with a simple Array.find, which loops all the relays. This is a hot path and we want to make sure it's performant.
Done criteria
The text was updated successfully, but these errors were encountered: