-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.go
31 lines (25 loc) · 925 Bytes
/
cache.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package pagecache
import (
"context"
"net/http"
"time"
)
// Cache is a storage mechanism used to store and retrieve HTTP responses for
// improved reliability and performance.
//
// Implementations can use various caching strategies such as in-memory,
// file-based, or distributed caches like Redis.
type Cache interface {
// Get retrieves an *http.Response from the cache associated with the given
// key.
Get(ctx context.Context, key string) (*http.Response, error)
// Set stores an *http.Response in the cache, associated with the given
// key, and sets the expiration duration.
Set(ctx context.Context, key string, resp *http.Response, duration time.Duration) error
// Delete removes the cache entry associated with the given key.
Delete(ctx context.Context, key string) error
// Policy returns the cache policy.
Policy() *Policy
// Purge clears the entire cache.
Purge(ctx context.Context) error
}