forked from ulule/limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0329c2
commit f0d3b33
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |