Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 fix doc inconsistents of storage #1787

Merged
merged 1 commit into from Feb 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions app.go
Expand Up @@ -48,13 +48,13 @@ type Map map[string]interface{}
// providers
type Storage interface {
// Get gets the value for the given key.
// It returns ErrNotFound if the storage does not contain the key.
// `nil, nil` is returned when the key does not exist
Get(key string) ([]byte, error)

// Set stores the given value for the given key along with a
// time-to-live expiration value, 0 means live for ever
// Set stores the given value for the given key along
// with an expiration value, 0 means no expiration.
// Empty key or value will be ignored without an error.
Set(key string, val []byte, ttl time.Duration) error
Set(key string, val []byte, exp time.Duration) error

// Delete deletes the value for the given key.
// It returns no error if the storage does not contain the key,
Expand Down