我一直在使用CouchDB。现在我正在尝试将我的应用程序从CouchDb迁移到CouchBase。
的等效代码是什么
public CouchResponse CreateDocument(string jsonForDocument);
在couchbase。?
我使用以下代码在couchdb中查询创建文档..
CouchDatabase oCouchDB;
oClient = new CouchClient(host, port, username, password, false, AuthenticationType.Cookie, 30000);
oCouchDB = oClient.GetDatabase(baseDatabase);
CouchResponse resp = oCouchDB.CreateDocument(jsonString);
答案 0 :(得分:1)
Couchbase中的CRUD函数通过memcached API(键/值)执行。
有关详细信息,请参阅http://www.couchbase.com/develop/net/next。