Class CacheMissEvent
Published on cache miss (query had to hit the DB).
public record CacheMissEvent : IEvent, IEquatable<CacheMissEvent>
- Inheritance
-
CacheMissEvent
- Implements
-
IEvent
- Inherited Members
Constructors
CacheMissEvent(string, string, string, DateTime)
Published on cache miss (query had to hit the DB).
public CacheMissEvent(string ConnectionId, string TableName, string CacheKey, DateTime At)
Parameters
Properties
At
public DateTime At { get; init; }
Property Value
CacheKey
public string CacheKey { get; init; }
Property Value
ConnectionId
public string ConnectionId { get; init; }
Property Value
TableName
public string TableName { get; init; }