Example #1
0
func subMirrorNext(conn *client.Conn, args []string) {
	if key, value, existed := conn.SubMirrorNext([]byte(args[1]), []byte(args[2])); existed {
		fmt.Printf("%v => %v\n", decode(key), string(value))
	}
}