mirror of https://github.com/go-redis/redis.git
Rename examples.
This commit is contained in:
parent
63282071de
commit
331f882d34
|
@ -7,7 +7,7 @@ import (
|
||||||
"github.com/vmihailenco/redis/v2"
|
"github.com/vmihailenco/redis/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ExampleTCPClient() {
|
func ExampleNewTCPClient() {
|
||||||
client := redis.NewTCPClient(&redis.Options{
|
client := redis.NewTCPClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: "localhost:6379",
|
||||||
Password: "", // no password set
|
Password: "", // no password set
|
||||||
|
@ -20,7 +20,7 @@ func ExampleTCPClient() {
|
||||||
// Output: <nil> PONG
|
// Output: <nil> PONG
|
||||||
}
|
}
|
||||||
|
|
||||||
func ExampleUnixClient() {
|
func ExampleNewUnixClient() {
|
||||||
client := redis.NewUnixClient(&redis.Options{
|
client := redis.NewUnixClient(&redis.Options{
|
||||||
Addr: "/tmp/redis.sock",
|
Addr: "/tmp/redis.sock",
|
||||||
})
|
})
|
||||||
|
@ -31,7 +31,7 @@ func ExampleUnixClient() {
|
||||||
// Output: <nil> PONG
|
// Output: <nil> PONG
|
||||||
}
|
}
|
||||||
|
|
||||||
func ExampleSetGet() {
|
func ExampleSet() {
|
||||||
client := redis.NewTCPClient(&redis.Options{
|
client := redis.NewTCPClient(&redis.Options{
|
||||||
Addr: ":6379",
|
Addr: ":6379",
|
||||||
})
|
})
|
||||||
|
@ -85,7 +85,7 @@ func incr(tx *redis.Multi) ([]redis.Cmder, error) {
|
||||||
return cmds, err
|
return cmds, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func ExampleTransaction() {
|
func ExampleMulti() {
|
||||||
client := redis.NewTCPClient(&redis.Options{
|
client := redis.NewTCPClient(&redis.Options{
|
||||||
Addr: ":6379",
|
Addr: ":6379",
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue