mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 20:06:03 +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
|
|
)
|