⚠ Migrate TwinProduction/gatus to TwiN/gatus
This commit is contained in:
15
vendor/github.com/TwiN/gocache/statistics.go
generated
vendored
Normal file
15
vendor/github.com/TwiN/gocache/statistics.go
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
package gocache
|
||||
|
||||
type Statistics struct {
|
||||
// EvictedKeys is the number of keys that were evicted
|
||||
EvictedKeys uint64
|
||||
|
||||
// ExpiredKeys is the number of keys that were automatically deleted as a result of expiring
|
||||
ExpiredKeys uint64
|
||||
|
||||
// Hits is the number of cache hits
|
||||
Hits uint64
|
||||
|
||||
// Misses is the number of cache misses
|
||||
Misses uint64
|
||||
}
|
Reference in New Issue
Block a user