This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
Cold performance of ResourceManagerStringLocalizer is atrocious #162
Closed
Description
Consider a localized version of the home page in the standard ASP.NET starter web template. You get around 50 localized strings. This results in 50 calls to ResourceManager.GetString
that will throw MissingManifestResourceException
when using the base language (i.e. one that doesn't have a specific culture assembly). That takes about 6 seconds. The next call is super fast as everything is then cached (~15ms).
Need to explore how we could possibly make that initial render faster.