Table of Contents

Class CacheMissEvent

Namespace
CL.MySQL2.Events
Assembly
CL.MySQL2.dll

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

ConnectionId string
TableName string
CacheKey string
At DateTime

Properties

At

public DateTime At { get; init; }

Property Value

DateTime

CacheKey

public string CacheKey { get; init; }

Property Value

string

ConnectionId

public string ConnectionId { get; init; }

Property Value

string

TableName

public string TableName { get; init; }

Property Value

string