vikunja/vendor/github.com/ulule/limiter/v3/defaults.go

16 lines
409 B
Go
Raw Normal View History

2019-07-21 21:27:30 +00:00
package limiter
import "time"
const (
// DefaultPrefix is the default prefix to use for the key in the store.
DefaultPrefix = "limiter"
// DefaultMaxRetry is the default maximum number of key retries under
// race condition (mainly used with database-based stores).
DefaultMaxRetry = 3
// DefaultCleanUpInterval is the default time duration for cleanup.
DefaultCleanUpInterval = 30 * time.Second
)