如何将hyperloglog密钥迁移到azure redis

时间:2015-12-02 15:50:40

标签: azure redis azure-redis-cache hyperloglog

我正在尝试使用MIGRATE命令将redis hyperloglog密钥从一台服务器迁移到azure redis服务,但据我所知MIGRATE doesn't support moving key to a redis server which requires authentication

我如何迁移hyperlolog密钥呢?

1 个答案:

答案 0 :(得分:2)

您可以在任何客户端上编码,HyperLogLog只是一个字符串。您可以在源服务器上获取字符串,在目标上获取SET。

x = Server1.StringGet(key);
Server2.StringSet(key, x);

redis-cli example