fanliang11 / surging

Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. support Event-based Asynchronous Pattern and reactive programming ,The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service governance to ensure reliable RPC communication, the engine contains Diagnostic, link tracking for protocol and middleware calls, and integration SkyWalking Distributed APM
MIT License
3.24k stars 923 forks source link

请问缓存Redis多节点的配置方式是怎么配置? #340

Closed wlhappy01 closed 5 years ago

wlhappy01 commented 5 years ago

比如192.168.1.1 192.168.1.2

"Maps": [ { "Name": "Redis", "Properties": [

            {
              "Name": null,
              "Ref": null,
              "Value": "192.168.1.1:6379::1",
              "Maps": null
            },
            {
              "Name": null,
              "Ref": null,
              "Value": "192.168.1.2:6379::1",
              "Maps": null
            }
          ]
        }
        ]

是这样吗?感谢

fanliang11 commented 5 years ago

是的。

wlhappy01 commented 5 years ago

谢谢!