Newbye question - server-side moxi and .net/enym client
Hello,
please forgive the n00b question...
I am working on a small test application with the .net client (1.2), and a memcached bucket. I would like not to use the moxy, but let the client (vbucket-aware, right) handle the connections to all nodes in my cluster.
I also need to use a non-standard port for the communication from client to cluster.
So far I have:
- set-up a cluster with 4 nodes
- created a memcache vbucket
- mapped the vbucket to port 12345 via web interface
In my config, I list the IP addresses of all nodes, and specify the vbucket name and port in the connection string.. something like this
...
Now, here comes the stupid question... is the above setup using a serverside moxy, or not? I understand the client (.net/enym) should not need to use it at all, right? Do I need to do anything special not to use it?
Thanks!
Hello,
Not sure I understand correctly your question.
Have you tried to connect using the information described here:
http://www.couchbase.com/develop/net/current
This is compliant with cluster deployment too.
Regards
oops.. I cut out the connection strings...
something like this... straight form the samples
servers bucket="mybucket" bucketPassword=""
add uri="http://1. 2.3.4:12345/pools"/
add uri="http://5. 6.7.8:12345/pools"/
...
...