rueian commented on issue #1403: URL: https://github.com/apache/incubator-kvrocks/issues/1403#issuecomment-1525582487
Hi @tisonkun, Yes, I am also making a go redis client, rueidis, and got a report that it doesn't work with kvrocks because of the syntax difference with redis: https://github.com/rueian/rueidis/issues/204 But I am not sure if goredis do special work for kvrocks or not, since its latest version doesn't work with kvrocks as well. For example: ```go package main import ( "context" "fmt" "github.com/redis/go-redis/v9" ) func main() { client := redis.NewClient(&redis.Options{Addr: "127.0.0.1:6666", Password: "mypass"}) fmt.Println(client.Ping(context.Background())) } ``` goredis actually send `hello 3 auth default mypass` to kvrocs. And then it returned `ping: Syntax error in HELLO option auth` error. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
