()
| 10 | ) |
| 11 | |
| 12 | func ExampleRawBinaryClient() { |
| 13 | conn, _ := net.Dial("tcp", "localhost:11211") |
| 14 | |
| 15 | client := memcache.NewRawBinaryClient(0, conn) |
| 16 | |
| 17 | clientExample(client) |
| 18 | } |
| 19 | |
| 20 | func ExampleRawAsciiClient() { |
| 21 | conn, _ := net.Dial("tcp", "localhost:11211") |
nothing calls this directly
no test coverage detected