Class SchemeCacheStatistics

Assembly: redb.Core.dll

Scheme cache statistics.

public class SchemeCacheStatistics

Inheritance

ObjectSchemeCacheStatistics

Properties

CachedSchemesCount

Cached schemes count.

public int CachedSchemesCount { get; set; }

CreatedTime

Cache creation time.

public DateTime CreatedTime { get; set; }

EstimatedSizeBytes

Estimated cache size in bytes.

public long EstimatedSizeBytes { get; set; }

HitRatio

Cache hit ratio (0.0 - 1.0).

public double HitRatio { get; }

Hits

Cache hits count.

public long Hits { get; set; }

LastAccessTime

Last cache access time.

public DateTime LastAccessTime { get; set; }

Misses

Cache misses count.

public long Misses { get; set; }

RequestsByType

Detailed statistics by request type.

public Dictionary<string, long> RequestsByType { get; set; }

TotalRequests

Total requests count.

public long TotalRequests { get; }

TypeMappingsCount

Type mappings count.

public int TypeMappingsCount { get; set; }