mirror of
https://github.com/redis/go-redis.git
synced 2025-09-10 07:11:50 +03:00
Merge pull request #952 from mingrammer/default-addr
Support default redis address
This commit is contained in:
@@ -24,7 +24,7 @@ func init() {
|
|||||||
|
|
||||||
func ExampleNewClient() {
|
func ExampleNewClient() {
|
||||||
redisdb := redis.NewClient(&redis.Options{
|
redisdb := redis.NewClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: "localhost:6379", // use default Addr
|
||||||
Password: "", // no password set
|
Password: "", // no password set
|
||||||
DB: 0, // use default DB
|
DB: 0, // use default DB
|
||||||
})
|
})
|
||||||
|
@@ -101,6 +101,9 @@ func (opt *Options) init() {
|
|||||||
if opt.Network == "" {
|
if opt.Network == "" {
|
||||||
opt.Network = "tcp"
|
opt.Network = "tcp"
|
||||||
}
|
}
|
||||||
|
if opt.Addr == "" {
|
||||||
|
opt.Addr = "localhost:6379"
|
||||||
|
}
|
||||||
if opt.Dialer == nil {
|
if opt.Dialer == nil {
|
||||||
opt.Dialer = func() (net.Conn, error) {
|
opt.Dialer = func() (net.Conn, error) {
|
||||||
netDialer := &net.Dialer{
|
netDialer := &net.Dialer{
|
||||||
|
Reference in New Issue
Block a user