bbgo_origin/pkg/service/persistence.go
2023-03-03 17:13:54 +08:00

29 lines
750 B
Go

package service
import "time"
type PersistenceService interface {
NewStore(id string, subIDs ...string) Store
}
type Store interface {
Load(val interface{}) error
Save(val interface{}) error
Reset() error
}
type Expirable interface {
Expiration() time.Duration
}
type RedisPersistenceConfig struct {
Host string `yaml:"host" json:"host" env:"REDIS_HOST"`
Port string `yaml:"port" json:"port" env:"REDIS_PORT"`
Password string `yaml:"password,omitempty" json:"password,omitempty" env:"REDIS_PASSWORD"`
DB int `yaml:"db" json:"db" env:"REDIS_DB"`
Namespace string `yaml:"namespace" json:"namespace" env:"REDIS_NAMESPACE"`
}
type JsonPersistenceConfig struct {
Directory string `yaml:"directory" json:"directory"`
}