Open ericsampson opened 3 years ago
Tagging subscribers to this area: @eerhardt, @maryamariyan, @michaelgsharp See info in area-owners.md if you want to be subscribed.
Author: | ericsampson |
---|---|
Assignees: | - |
Labels: | `area-Extensions-Caching`, `untriaged` |
Milestone: | - |
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.
Tagging subscribers to this area: @eerhardt, @maryamariyan, @michaelgsharp See info in area-owners.md if you want to be subscribed.
Author: | ericsampson |
---|---|
Assignees: | - |
Labels: | `:watch: Not Triaged`, `Pri3`, `area-Extensions-Caching` |
Milestone: | - |
There's no xmldocs for MemoryCacheExtensions, which makes the online API browser docs and intellisense of little use.
Also, these docs should really include a mention that the
GetOrCreate
/GetOrCreateAsync
factories is not blocked for re-entrancy unless the programmer implements that themselves (easiest way is to useLazy
)For an example of good documentation of the same topic for a different class, check out the Remarks for ConcurrentDictionary AddOrUpdate
As can be seen in this GH issue, and from my own experience, people often get tripped up by this fact.
Thanks!