コード例 #1
0
 /// <summary>
 /// Returns the time since the object stored at the specified key is idle (not requested by read or write operations)
 /// </summary>
 /// <returns>The time since the object stored at the specified key is idle</returns>
 /// <remarks>https://redis.io/commands/object</remarks>
 public Task <TimeSpan?> IdleTimeAsync()
 {
     return(RedisDb.KeyIdleTimeAsync(KeyName));
 }