...

Source file src/github.com/redis/go-redis/v9/internal/pool/conn_check_dummy.go

Documentation: github.com/redis/go-redis/v9/internal/pool

     1  //go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !solaris && !illumos
     2  
     3  package pool
     4  
     5  import "net"
     6  
     7  func connCheck(conn net.Conn) error {
     8  	return nil
     9  }
    10  

View as plain text