Closed
Description
Regression of #22295
Lines 151 to 162 in b383652
The following code does not work:
SetUserSetting(1, "key", "value") // sets the setting to "value" and adds it to the cache
SetUserSetting(1, "key", "updated value") // does nothing because the cache already has the value and the update is skipped
Setting a value should always invalidate/update the cache and the cache should not prevent the update.