Optimize structure

This commit is contained in:
2024-02-10 17:12:26 +08:00
parent aa7041962a
commit 571805250b
26 changed files with 193 additions and 52 deletions

View File

@@ -7,7 +7,7 @@ public class MemoryCache : ICacher
private readonly ConcurrentDictionary<string, string> _stringCache = new();
private readonly ConcurrentDictionary<string, Dictionary<string, string>> _hashCache = new();
public static MemoryCache Instance { get; private set; }
public static MemoryCache? Instance { get; private set; }
public MemoryCache()
{