diff --git a/redis.go b/redis.go index 20599070..c8fe071d 100644 --- a/redis.go +++ b/redis.go @@ -164,7 +164,6 @@ func (c *BaseClient) Close() error { type Client struct { *BaseClient - TryEvalShaMinLen int } func NewClient(openConn OpenConnFunc, closeConn CloseConnFunc, initConn InitConnFunc) *Client { @@ -173,7 +172,6 @@ func NewClient(openConn OpenConnFunc, closeConn CloseConnFunc, initConn InitConn ConnPool: NewMultiConnPool(openConn, closeConn, 10), InitConn: initConn, }, - TryEvalShaMinLen: 80, } }