Live: experimental HA with Redis (#34851)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// +build redis
|
||||
|
||||
package managedstream
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
"gopkg.in/redis.v5"
|
||||
)
|
||||
|
||||
func TestRedisCacheStorage(t *testing.T) {
|
||||
redisClient := redis.NewClient(&redis.Options{
|
||||
Addr: "localhost:6379",
|
||||
})
|
||||
c := NewRedisFrameCache(redisClient)
|
||||
require.NotNil(t, c)
|
||||
testFrameCache(t, c)
|
||||
}
|
||||
Reference in New Issue
Block a user