Store the user statistics for the performance.

This commit is contained in:
Sébastien André
2021-08-11 22:37:14 +02:00
parent 6c53408c6d
commit 4c1dc89006
64 changed files with 453 additions and 1783 deletions

View File

@@ -6,13 +6,13 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
{
#region Public Methods
bool Contains(CacheType type, int id = 0);
bool Contains(CacheType type, int userId = 0);
void Delete(CacheType type, int id = 0);
void Delete(CacheType type, int userId = 0);
T Get<T>(CacheType type, int id = 0);
T Get<T>(CacheType type, int userId = 0);
void Put(CacheType type, object value, int duration, int id = 0);
void Put(CacheType type, object value, int duration, int userId = 0);
#endregion Public Methods
}