ss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"github.com/garyburd/redigo/redis" | |
redisPool := &redis.Pool{ | |
Dial: func() (redis.Conn, error) { | |
c, err := redis.Dial("tcp", "0.0.0.0:6379") | |
if err != nil { | |
return nil, err | |
} | |
if len("") > 0 { | |
if _, err := c.Do("AUTH", ""); err != nil { |
Building Apache Hadoop from Source on Windows 10 with Visual Studio 2015
NewerOlder