couchdb-client
couchdb-client copied to clipboard
CouchDB Client library
On clustered CouchDB servers deleting a DB may return 202 - Accepted: Request has been accepted, but the corresponding operation may not have completed. Reference: https://docs.couchdb.org/en/stable/api/basics.html#http-status-codes
Hi @jwage I have executed below code and it throwing 504 Connection to database ``` $couchClient = CouchDBClient::create([ 'dbname' => env('DB_DATABASE'), 'user' => env('DB_USERNAME'), 'password' => env('DB_PASSWORD'), 'host' => env('DB_HOST'),...
This method can be called to query several documents in bulk. It is well suited for fetching a specific revision of documents, as replicators do for example, or for getting...
```//Search documents using Mango Query CouchDB v2.x $selector = ['_id'=>['$gt'=>null]]; $options = ['limit'=>1,'skip'=>1,'use_index'=>['_design/doc','index'],'sort'=>[['_id'=>'desc']]]; $query = new \Doctrine\CouchDB\Mango\MangoQuery($selector,$options); $docs = $client->find($query); ``` The find function does not appear to be implemented,...
Would it be possible to have support for bookmarks added?
This PR upgrades PHPUnit constraint to minimum of 4.8.35 and removes non namespaced `PHPUnit_Framework_TestCase` in favor of `TestCase`
Hi, I would like to add an attachment to a new document but I don't know how to do that. I was looking into the files and documentation to do...
I was wondering why there is no client using curl, guzzle or buzz? By using Guzzle even a async response handling could be done: http://guzzle.readthedocs.org/en/latest/clients.html#asynchronous-requests Should such clients be part...
CouchDB 2.0: Error with status 417 occurred. Error: not_implemented all_or_nothing is not supported
I am trying to use Doctrine throught DoctrineCouchdbBundle in Symfony 2.8 with CouchDB 2.0, but I have the following error: Doctrine/CouchDB 2.0: Error with status 417 occurred. Error: not_implemented all_or_nothing...