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 was archived by the owner on Nov 25, 2019. It is now read-only.
We have loads of string manipulation happening throughout the SDK to format request URLs. Because strings are immutable, this is creating lots of garbage for each request. I'm guessing each request uses 20+ temporary strings. Request 128 tiles and now you have problems.
Solution: use StringBuilder (and dependency injection?)
We have loads of string manipulation happening throughout the SDK to format request URLs. Because strings are immutable, this is creating lots of garbage for each request. I'm guessing each request uses 20+ temporary strings. Request 128 tiles and now you have problems.
Solution: use
StringBuilder(and dependency injection?)