package internal
import "github.com/go-redis/redis/internal"
Index ¶
- Variables
- func IsBadConn(err error, allowTimeout bool) bool
- func IsLoadingError(err error) bool
- func IsMovedError(err error) (moved bool, ask bool, addr string)
- func IsReadOnlyError(err error) bool
- func IsRedisError(err error) bool
- func IsRetryableError(err error, retryTimeout bool) bool
- func Logf(s string, args ...interface{})
- func RetryBackoff(retry int, minBackoff, maxBackoff time.Duration) time.Duration
- func ToLower(s string) string
- func Unwrap(err error) error
- type Once
Variables ¶
Functions ¶
func IsBadConn ¶
func IsLoadingError ¶
func IsMovedError ¶
func IsReadOnlyError ¶
func IsRedisError ¶
func IsRetryableError ¶
func Logf ¶
func Logf(s string, args ...interface{})
func RetryBackoff ¶
Retry backoff with jitter sleep to prevent overloaded conditions during intervals https://www.awsarchitectureblog.com/2015/03/backoff.html
func ToLower ¶
func Unwrap ¶
Types ¶
type Once ¶
type Once struct {
// contains filtered or unexported fields
}
A Once will perform a successful action exactly once.
Unlike a sync.Once, this Once's func returns an error and is re-armed on failure.
func (*Once) Do ¶
Do calls the function f if and only if Do has not been invoked without error for this instance of Once. In other words, given
var once Once
if once.Do(f) is called multiple times, only the first call will invoke f, even if f has a different value in each invocation unless f returns an error. A new instance of Once is required for each function to execute.
Do is intended for initialization that must be run exactly once. Since f is niladic, it may be necessary to use a function literal to capture the arguments to a function to be invoked by Do:
err := config.once.Do(func() error { return config.init(filename) })
Source Files ¶
error.go internal.go log.go once.go util.go
Directories ¶
Path | Synopsis |
---|---|
internal/consistenthash | Package consistenthash provides an implementation of a ring hash. |
internal/hashtag | |
internal/pool | |
internal/proto | |
internal/util |
- Version
- v6.15.9+incompatible (latest)
- Published
- Aug 7, 2020
- Platform
- linux/amd64
- Imports
- 11 packages
- Last checked
- 5 days ago –
Tools for package owners.