mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-14 13:46:23 +00:00
Update app.go (#1787)
This commit is contained in:
parent
a746e5bfb8
commit
b0dd0bdb14
8
app.go
8
app.go
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user