Store the user statistics for the performance.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user