Closed bliutech closed 12 months ago
On Fri, Aug 18, 2023 at 12:34:43PM -0700, Benson Liu wrote:
I am interested in seeing support for the
CLIENT
command. Particularly for the use cases ofCLIENT SETNAME
andCLIENT GETNAME
. I noticed that this was included in the list of commands that will probably not be supported. I am curious as to why this is the case becauseminiredis
already seems to attempt to distinguish between peers and track at least the number of clients withINFO
and this seems like something that would be a reasonable use case. Particularly, I am running into the issue with developing functional tests withgo-redis
asClusterName
is a reasonable field that could be set.
The "not be supported" list is ancient, so take it with a grain of salt. The
CLIENT GET/SETNAME
command looks useful. I might have a look (it sounds
easy), but if you want to try a PR that would probably be the quickest way.
Awesome! Thanks. Will take a look.
I am interested in seeing support for the
CLIENT
command. Particularly for the use cases ofCLIENT SETNAME
andCLIENT GETNAME
. I noticed that this was included in the list of commands that will probably not be supported. I am curious as to why this is the case becauseminiredis
already seems to attempt to distinguish between peers and track at least the number of clients withINFO
and this seems like something that would be a reasonable use case. Particularly, I am running into the issue with developing functional tests withgo-redis
asClusterName
is a reasonable field that could be set.