redis集群密码JAVA怎么连_从Java连接到AWS Elasticache(Redis集群)的正确方...

这取决于您如何配置redis集群.是否启用集群模式.

您可以在控制台中找到它

Redis (cluster mode disabled) clusters, use the Primary Endpoint for

all write operations. Use the individual Node Endpoints for read

operations (In the API/CLI these are referred to as Read Endpoints).

Redis (cluster mode enabled) clusters, use the cluster’s Configuration

Endpoint for all operations. You must use a client that supports Redis

Cluster (Redis 3.2). You can still read from individual node endpoints

(In the API/CLI these are referred to as Read Endpoints).

或使用AWS CLI

aws elasticache describe-cache-clusters \n --cache-cluster-id mycluster \n --show-cache-node-info

ConfigurationEndpoint -> (structure) Represents a Memcached cluster

endpoint which, if Automatic Discovery is enabled on the cluster, can

be used by an application to connect to any node in the cluster. The

configuration endpoint will always have .cfg in it. Example:

mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

你可能感兴趣的:(redis集群密码JAVA怎么连_从Java连接到AWS Elasticache(Redis集群)的正确方...)