mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
29 lines
750 B
Go
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"`
|
|
} |