-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cachettl configuration option for not refreshing ttl (#643)
- Loading branch information
Showing
5 changed files
with
121 additions
and
27 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package cachettl | ||
|
||
import "time" | ||
|
||
type Opt func(*cacheConfig) | ||
|
||
// WithNoRefreshTTL disables the refresh of the TTL when the cache is accessed. | ||
var WithNoRefreshTTL = func(c *cacheConfig) { | ||
c.refreshTTL = false | ||
} | ||
|
||
// WithNow sets the function to use to get the current time. | ||
var WithNow = func(now func() time.Time) Opt { | ||
return func(c *cacheConfig) { | ||
c.now = now | ||
} | ||
} | ||
|
||
type cacheConfig struct { | ||
now func() time.Time | ||
refreshTTL bool | ||
} |
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
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
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