Add note about missing expiration logic

This commit is contained in:
Dean Herbert 2020-11-02 14:51:19 +09:00
parent d46f7535c9
commit 7b320a991f
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ namespace osu.Game.Scoring
/// </summary>
public class ScorePerformanceManager : Component
{
// this cache will grow indefinitely per session and should be considered temporary.
// this whole component should likely be replaced with database persistence.
private readonly ConcurrentDictionary<PerformanceCacheLookup, double> performanceCache = new ConcurrentDictionary<PerformanceCacheLookup, double>();
[Resolved]