1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Rename DialTCP NewTCPClient.

This commit is contained in:
Vladimir Mihailenco
2013-09-29 11:15:18 +03:00
parent f54394beb6
commit 63282071de
3 changed files with 14 additions and 26 deletions

View File

@ -8,7 +8,7 @@ import (
)
func ExampleTCPClient() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
@ -21,7 +21,7 @@ func ExampleTCPClient() {
}
func ExampleUnixClient() {
client := redis.DialUnix(&redis.Options{
client := redis.NewUnixClient(&redis.Options{
Addr: "/tmp/redis.sock",
})
defer client.Close()
@ -32,7 +32,7 @@ func ExampleUnixClient() {
}
func ExampleSetGet() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: ":6379",
})
defer client.Close()
@ -48,7 +48,7 @@ func ExampleSetGet() {
}
func ExamplePipeline() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: ":6379",
})
defer client.Close()
@ -86,7 +86,7 @@ func incr(tx *redis.Multi) ([]redis.Cmder, error) {
}
func ExampleTransaction() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: ":6379",
})
defer client.Close()
@ -106,7 +106,7 @@ func ExampleTransaction() {
}
func ExamplePubSub() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: ":6379",
})
defer client.Close()
@ -137,7 +137,7 @@ func Get(client *redis.Client, key string) *redis.StringCmd {
}
func ExampleCustomCommand() {
client := redis.DialTCP(&redis.Options{
client := redis.NewTCPClient(&redis.Options{
Addr: ":6379",
})
defer client.Close()