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
Currently the actor CRUD test creates database backed actors. This adds unnecessary variance in the statistics via database and network transmission latencies.
It should instead create synthetic actor with Actor.create(data, {temporary:true}) so it measures only the actual processing time instead of also network and server latency.
The text was updated successfully, but these errors were encountered:
The Network and Server latency are useful indications of server health in some cases. They were interesting metrics when we first started exploring this concept.
It might be worth making an additional temporary test, but I would not remove the existing full blown test.
Currently the actor CRUD test creates database backed actors. This adds unnecessary variance in the statistics via database and network transmission latencies.
It should instead create synthetic actor with
Actor.create(data, {temporary:true})
so it measures only the actual processing time instead of also network and server latency.The text was updated successfully, but these errors were encountered: