mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 01:52:02 +08:00

### Summary feat(.): initialize all factories #### Related Issues / PR's Removed all redundant commits of https://github.com/SigNoz/signoz/pull/6843 Closes https://github.com/SigNoz/signoz/pull/6782
52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
package cache
|
|
|
|
import (
|
|
"time"
|
|
|
|
go_cache "github.com/patrickmn/go-cache"
|
|
"go.signoz.io/signoz/pkg/factory"
|
|
)
|
|
|
|
type Memory struct {
|
|
TTL time.Duration `mapstructure:"ttl"`
|
|
CleanupInterval time.Duration `mapstructure:"cleanupInterval"`
|
|
}
|
|
|
|
type Redis struct {
|
|
Host string `mapstructure:"host"`
|
|
Port int `mapstructure:"port"`
|
|
Password string `mapstructure:"password"`
|
|
DB int `mapstructure:"db"`
|
|
}
|
|
|
|
type Config struct {
|
|
Provider string `mapstructure:"provider"`
|
|
Memory Memory `mapstructure:"memory"`
|
|
Redis Redis `mapstructure:"redis"`
|
|
}
|
|
|
|
func NewConfigFactory() factory.ConfigFactory {
|
|
return factory.NewConfigFactory(factory.MustNewName("cache"), newConfig)
|
|
}
|
|
|
|
func newConfig() factory.Config {
|
|
return &Config{
|
|
Provider: "memory",
|
|
Memory: Memory{
|
|
TTL: go_cache.NoExpiration,
|
|
CleanupInterval: 1 * time.Minute,
|
|
},
|
|
Redis: Redis{
|
|
Host: "localhost",
|
|
Port: 6379,
|
|
Password: "",
|
|
DB: 0,
|
|
},
|
|
}
|
|
|
|
}
|
|
|
|
func (c Config) Validate() error {
|
|
return nil
|
|
}
|