mirror of
https://github.com/kopia/kopia.git
synced 2026-03-13 11:46:55 -04:00
11 lines
392 B
Go
11 lines
392 B
Go
package block
|
|
|
|
// CachingOptions specifies configuration of local cache.
|
|
type CachingOptions struct {
|
|
CacheDirectory string `json:"cacheDirectory,omitempty"`
|
|
MaxCacheSizeBytes int64 `json:"maxCacheSize,omitempty"`
|
|
MaxListCacheDurationSec int `json:"maxListCacheDuration,omitempty"`
|
|
IgnoreListCache bool `json:"-"`
|
|
HMACSecret []byte `json:"-"`
|
|
}
|