15 lignes
238 o
Go
15 lignes
238 o
Go
|
package config
|
||
|
|
||
|
// CacheConfig is config struct for caching strategy
|
||
|
type CacheConfig struct {
|
||
|
Dialect string
|
||
|
URL string
|
||
|
Size float64
|
||
|
}
|
||
|
|
||
|
const DefaultCacheSize = 1 << 10
|
||
|
|
||
|
var DefaultCacheConfig = CacheConfig{
|
||
|
Dialect: "nop",
|
||
|
}
|