()
| 625 | } |
| 626 | |
| 627 | func Example_customCommand2() { |
| 628 | v, err := rdb.Do(ctx, "get", "key_does_not_exist").Text() |
| 629 | fmt.Printf("%q %s", v, err) |
| 630 | // Output: "" redis: nil |
| 631 | } |
| 632 | |
| 633 | func ExampleScanIterator() { |
| 634 | iter := rdb.Scan(ctx, 0, "", 0).Iterator() |