我已经开始收到此错误
GetVBucket is implemented only for VBucketNodeLocator
这是代码:
var couchbaseClient = new CouchbaseClient();
var isRunning = couchbaseClient.KeyExists("job-started"); //Error here
这是我的配置:
<couchbase>
<servers bucket="unittests">
<add uri="http://localhost:8091/pools" />
<add uri="http://localhost:11211/pools" />
</servers>
</couchbase>
这个才真正开始的bucket是一个memcache bucket。
快速更新 如果我使用 get 而不是 exists 它可以工作。