MCPcopy
hub / github.com/redis/go-redis / LoadingError

Struct LoadingError

internal/proto/redis_errors.go:12–14  ·  view source on GitHub ↗

Typed Redis errors for better error handling with wrapping support. These errors maintain backward compatibility by keeping the same error messages. LoadingError is returned when Redis is loading the dataset in memory.

Source from the content-addressed store, hash-verified

10
11// LoadingError is returned when Redis is loading the dataset in memory.
12type LoadingError struct {
13 msg string
14}
15
16func (e *LoadingError) Error() string {
17 return e.msg

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected