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
In looking at the list domains endpoint, there are 60ish domains in the system, but the list is set to limit to 25.
Here are 3 of the main areas where time is spent that I can see:
40.51% serializers:793:data <---- This is the serializing the individual fields and the entire request
5.55% cursor:80:execute <---- This is the actual DB cursor wait time. If you consider the calls above as necessary overhead to get here it's more like 8%. Note (and interestingly) this is not a subcomponent of the serializer time above
34.67% fields:136:decrypt <---- This is just the time spent decrypting the fields!
Dennis and I put this analysis together based on data he collected against our staging environment.
The text was updated successfully, but these errors were encountered:
CProfile List Domains Endpoint
In looking at the list domains endpoint, there are 60ish domains in the system, but the list is set to limit to 25.
Here are 3 of the main areas where time is spent that I can see:
Dennis and I put this analysis together based on data he collected against our staging environment.
The text was updated successfully, but these errors were encountered: