mirror of
https://github.com/elyby/chrly.git
synced 2025-01-07 04:23:51 +05:30
24 lines
494 B
Go
24 lines
494 B
Go
package redis
|
|
|
|
import (
|
|
"elyby/minecraft-skinsystem/model"
|
|
|
|
"github.com/mediocregopher/radix.v2/pool"
|
|
)
|
|
|
|
type RedisSkinsFactory struct {
|
|
Addr string
|
|
PollSize int
|
|
}
|
|
|
|
func (cfg *RedisSkinsFactory) Create() (model.SkinsRepository, error) {
|
|
conn, err := pool.New("tcp", cfg.Addr, cfg.PollSize)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO: здесь можно запустить горутину по восстановлению соединения
|
|
|
|
return &redisDb{conn: conn}, nil
|
|
}
|