Skip to content

Commit

Permalink
Add DefaultCleanUpInterval default.
Browse files Browse the repository at this point in the history
  • Loading branch information
gillesfabio committed Oct 7, 2015
1 parent e0329c2 commit f0d3b33
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions defaults.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
package limiter

import "time"

const (
// DefaultPrefix is the prefix to use for the store key.
// DefaultPrefix is the default prefix to use for the key in the store.
DefaultPrefix = "limiter"

// DefaultMaxRetry is the maximum number of key retries under race condition.
// 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
)

0 comments on commit f0d3b33

Please sign in to comment.