Most voted "couchdb" questions
Apache Couchdb, commonly referred to as Couchdb, is an open-source database that focuses on ease of use and the philosophy of being "a database that spans the Web". It is a non-relational database (Nosql) that uses JSON to store the data, Javascript as its query language using Mapreduce, and HTTP as API. If the doubt is not about "Couchdb", do not use this tag, even if you are using "Couchdb" in your project.
Learn more…11 questions
Sort by count of
-
3
votes1
answer45
viewsCouchdb best practices for updating related documents
I’m using CouchDB and NodeJs with these examples of documents. Role { _id, name } User { _id, email, password, role: { _id, name } } What is the best practice for when I update a Role, also update…
-
2
votes1
answer225
viewsReference or embed documents in mongodb and couchdb
I’m thinking of creating referenced documents instead of embedded because I have a database where a plane has flights and flights have airports. Someone experienced enough to tell me the best…
-
1
votes2
answers286
viewsConvention for use of Pouchdb with Couchdb
I am developing a simple application with pouchDB and couchDB and have the following questions: In a normal, relational database (mysql for example) I would have several tables. The equivalent…
-
1
votes0
answers29
viewsError 500 in couchdb
I’m with developing an app using Angularjs + Couchdb. But despite all the speed that the couchdb offers as I use the app suddenly the connection with the couchdb drops returning the following error:…
couchdbasked 9 years, 6 months ago Luiz Carlos Zanini 31 -
1
votes1
answer53
viewsCouchbase + N1QL
In a bank of approximately 300,000 records, the query below: SELECT count(usuario) FROM analytics where datahora.entrada >= '2016-11-18T00:00:00.000Z' and datahora.entrada <=…
-
1
votes0
answers39
viewsSend a blob to a webservice
Hello, it may sound like Jr. the personal question but I’ve tried searching the internet and nothing. I have the following scenario: A. NET API provided by a company to which I have to submit a…
node.js asp.net-web-api file-upload integration couchdbasked 6 years, 4 months ago Hiago Souza 5,837 -
0
votes0
answers16
viewsCouchdb and codeigniter
I have a little problem here, I have a job to do and I need to integrate the codeigniter with couchdb, I found a library on github, I followed the installation tutorial and everything, but still it…
-
0
votes1
answer50
viewshow to connect to couchdb in codeigniter?
someone knows how to connect to Couchdb using codeigniter? We have tried many tutorials, added the necessary libraries, but we did not succeed. Please help us.
-
0
votes1
answer51
viewsFailed Pouchdb Replication for Couchdb
Caenarius I have the following code.: ['tableA', 'tableB', 'tableC'].forEach(name => { let local = new PouchDB(name, { auto_compaction: true }) let server = new PouchDB(serverUrl + name) var…
-
0
votes1
answer22
viewsProblem (Same Origin Policy) using Vue.js and Couchdb
I’m making a post request through the Vue.js, to create a document in the Couchdb, I enabled Cors in couchdb with *, left the database enabled for the user admin and made the following code: var…
-
-1
votes1
answer26
viewsError "zero is not a supported Scheme"
I’m trying to use Couchdb together with Python, I did the installation of both correctly, I went to Couchdbe created a user, when I go to the Python compiler and run: import couchdb couch =…