func last(conn *client.Conn, args []string) { if key, value, existed := conn.Last([]byte(args[1])); existed { fmt.Println(string(key), "=>", decode(value)) } }