gpt4 book ai didi

php - Predis 使用 PHP : How to get which Redis node ( host ) that holds a particular key?

转载 作者:可可西里 更新时间:2023-11-01 11:18:13 25 4
gpt4 key购买 nike

我在 PHP 中使用 Predis 使用 Redis 集群,我做的很简单

$image_urls = $client->get($key)

现在我想获取Redis找到键值对的主机地址,因为它也包含本 map 片,我需要获取这些图片的完整链接。

最佳答案

您可以使用 getConnectionByKey() 获取该信息。

例如:

$cluster = new PredisCluster();
$cluster->add($connection);
$cluster->add($connection2);
$connection = $cluster->getConnectionByKey($key);

来源:PredisClusterTest.php

关于php - Predis 使用 PHP : How to get which Redis node ( host ) that holds a particular key?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41776324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com