You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
550 B
Go
30 lines
550 B
Go
package redistest
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/alicebob/miniredis/v2"
|
|
"github.com/zeromicro/go-zero/core/lang"
|
|
"github.com/zeromicro/go-zero/core/stores/redis"
|
|
)
|
|
|
|
// CreateRedis returns a in process redis.Redis.
|
|
func CreateRedis() (r *redis.Redis, clean func(), err error) {
|
|
mr, err := miniredis.Run()
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return redis.New(mr.Addr()), func() {
|
|
ch := make(chan lang.PlaceholderType)
|
|
go func() {
|
|
mr.Close()
|
|
close(ch)
|
|
}()
|
|
select {
|
|
case <-ch:
|
|
case <-time.After(time.Second):
|
|
}
|
|
}, nil
|
|
}
|