1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 20:41:57 +00:00
Former-commit-id: be901767a8008556e3499da60f6ca65f80219346
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-06-27 13:53:16 +03:00
parent b8218df789
commit 9863611264
3 changed files with 50 additions and 233 deletions

View File

@@ -19,7 +19,6 @@ type Driver interface {
var (
_ Driver = (*RedigoDriver)(nil)
_ Driver = (*RadixDriver)(nil)
_ Driver = (*RadixClusterDriver)(nil)
)
// Redigo returns the driver for the redigo go redis client.
@@ -33,8 +32,3 @@ func Redigo() *RedigoDriver {
func Radix() *RadixDriver {
return &RadixDriver{}
}
// RadixCluster returns the driver for the radix go redis client(only support redis cluster).
func RadixCluster() *RadixClusterDriver {
return &RadixClusterDriver{}
}