33 lines
681 B
Go
33 lines
681 B
Go
|
package cache
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/go-redis/redis/v7"
|
||
|
"github.com/matchstalk/go-admin-core/cache"
|
||
|
"github.com/matchstalk/redisqueue"
|
||
|
)
|
||
|
|
||
|
var RedisAdapter Adapter
|
||
|
|
||
|
func InitRedis() error {
|
||
|
RedisAdapter = &cache.Redis{
|
||
|
ConnectOption: &redis.Options{
|
||
|
Addr: "127.0.0.1:6379",
|
||
|
},
|
||
|
ConsumerOptions: &redisqueue.ConsumerOptions{
|
||
|
VisibilityTimeout: 60 * time.Second,
|
||
|
BlockingTimeout: 5 * time.Second,
|
||
|
ReclaimInterval: 1 * time.Second,
|
||
|
BufferSize: 100,
|
||
|
Concurrency: 10,
|
||
|
},
|
||
|
ProducerOptions: &redisqueue.ProducerOptions{
|
||
|
StreamMaxLength: 100,
|
||
|
ApproximateMaxLength: true,
|
||
|
},
|
||
|
}
|
||
|
err := RedisAdapter.Connect()
|
||
|
return err
|
||
|
}
|