mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 19:36:32 +02:00
8 lines
244 B
Go
8 lines
244 B
Go
package inmemory
|
|
|
|
const (
|
|
// callAfterTTLFactor will request to report back again after TTL/callAfterTTLFactor time
|
|
callAfterTTLFactor = 2
|
|
// purgeAfterTTLFactor will purge keys with TTL * purgeAfterTTLFactor time
|
|
purgeAfterTTLFactor = 1
|
|
)
|