ı want to use some server for my .NET codes dor example 127.0.0.1 and 192.5.54.46 Ip adress ı want use both of them can you help me please,????
I'm not a .NET guy, but here's my guess as to how to do this. In your config you should have a section like this:
<couchbase> <servers bucket="private" bucketPassword="private"> <add uri="http://10.0.0.33:8091/pools"/> </servers> </couchbase>
Try adding multiple add tags, like so.
<couchbase> <servers bucket="private" bucketPassword="private"> <add uri="http://10.0.0.31:8091/pools"/> <add uri="http://10.0.0.32:8091/pools"/> <add uri="http://10.0.0.33:8091/pools"/> </servers> </couchbase>
If that doesn't work let me know and I will forward this question to our .NET developer.
I'm not a .NET guy, but here's my guess as to how to do this. In your config you should have a section like this:
Try adding multiple add tags, like so.
If that doesn't work let me know and I will forward this question to our .NET developer.