()
| 18 | } |
| 19 | |
| 20 | func ExampleRawAsciiClient() { |
| 21 | conn, _ := net.Dial("tcp", "localhost:11211") |
| 22 | |
| 23 | client := memcache.NewRawAsciiClient(0, conn) |
| 24 | |
| 25 | clientExample(client) |
| 26 | } |
| 27 | |
| 28 | func ExampleShardedClient() { |
| 29 | options := net2.ConnectionOptions{ |
nothing calls this directly
no test coverage detected