diff --git a/Docs/Demos/NCTLWebExplorer/Services/MysqlEventStore.cs b/Docs/Demos/NCTLWebExplorer/Services/MysqlEventStore.cs index 4e7ded9..e02a0d3 100644 --- a/Docs/Demos/NCTLWebExplorer/Services/MysqlEventStore.cs +++ b/Docs/Demos/NCTLWebExplorer/Services/MysqlEventStore.cs @@ -487,7 +487,7 @@ private async Task GetItemsCount(MySqlConnection connection, string entity) { AbsoluteExpirationRelativeToNow = TimeSpan.FromMinutes(15) }; - _memoryCache.Set(entity, countItems, cacheEntryOptions); + _memoryCache.Set(entity + "Count", countItems, cacheEntryOptions); return countItems; }