-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Description
Which Umbraco version are you using?
13.10.1
Bug summary
We are seeing thousands of database hits when accessing dictionary items since upgrading to 13.10.1
Specifics
No response
Steps to reproduce
Running the following code in 13.10.1
for (var i = 0; i < 5; i++) { var b = Umbraco.GetDictionaryValueOrDefault("missing.keys", "whatever"); }
Shows a db hit for each dictionary item request.
Running the same code in 13.7.0 results in only a single db hit.
Expected result / actual result
No response