couchdb Questions

4

Solved

This is slightly different from the question titled "Error about ‘invalid JSON’ with couchDB view but the json’s fine": I am not trying to upload a file only enter a simple document. The example ...
Chas asked 27/7, 2010 at 21:1

3

Is there a way to do the following in CouchDB? A way to return unique, distinct values by a given key? SELECT DISTINCT field FROM table WHERE key="key1" 'key1' => 'somevalue' 'key1' => 'som...
Schecter asked 28/3, 2011 at 8:58

9

Solved

I really like the format of the _ids generated by mongodb. Mostly because I can pull data like the date out of them client side. I'm planning to use another database but still want that type of _id...
Lacerated asked 15/5, 2012 at 2:7

2

Solved

What does this error mean in CouchDB logs? I see that it is looking for some "_users" database. But I don't have a database with that name. Is there anything I can do to stop these errors...
Annunciate asked 12/10, 2021 at 14:40

5

Note: Made some updates based on new information. Old ideas have been added as comments below. Note: Made some updates (again) based on new information. Old ideas have been added as comments below ...
Cushitic asked 8/3, 2011 at 20:12

9

Solved

What are the advantages of using NoSQL databases? I've read a lot about them lately, but I'm still unsure why I would want to implement one, and under what circumstances I would want to use one.
Asyllabic asked 14/9, 2010 at 22:14

4

Solved

This wiki page, http://wiki.apache.org/couchdb/Getting_started_with_Java, lists several CouchDB Java clients. I wonder if any of the clients mentioned is significantly more dominant/popular/better/...
Erythrism asked 10/6, 2013 at 22:52

5

Solved

Couchdb only parse application/x-www-form-urlencoded. Is there a FormData() attribute that set the enctype? xhr.open('put',document.myForm.action,false) xhr.setRequestHeader('Content-Type','applic...
Kiakiah asked 24/9, 2011 at 23:21

2

Solved

I have a couchdb view set up using an array key value, in the format: [articleId, -timestamp] I want to query for all entries with the same article id. All timestamps are acceptable. Right now ...
Dampen asked 24/7, 2012 at 2:11

4

Solved

I need a get a list of all databases in a Couchdb server inside a view/validation function. Is there CouchDb predefiend function that i can use it inside function (like emit)? I know i can do htt...
Nonrestrictive asked 14/6, 2012 at 20:31

3

Solved

I've got couchdb installed from a package manager (Ubuntu, 10.04), but the partition where couchdb is installed is not especially big (~5GB). I'd like to move the database files to a bigger partiti...
Cecilececiley asked 10/6, 2011 at 1:15

9

Why should I use document based database like CouchDB instead of using relational database. Are there any typical kinds of applications or domains where the document based database is more suitable...
Pterosaur asked 14/1, 2009 at 0:21

2

Solved

Right now I am replicating my entire device database over to my remote database. Once that is complete, I grab all my data that is not older than 1 month from my remote database, using a filter, a...
Denti asked 28/9, 2016 at 17:52

6

Solved

What is command to clean CouchDB please ? And if I want to disable and re-start my CouchDB what is command? Thanks
Otha asked 23/10, 2012 at 12:36

1

Solved

In developing i use the fauxton. But it is anoying keep using the login due to timeout. Is it possible to disable the timeout login for fauxton to avoid this problem in developing? Thank you
Hypersensitize asked 10/9, 2021 at 10:26

4

Solved

Can CouchDB handle thousands of separate databases on the same machine? Imagine you have a collection of BankTransactions. There are many thousands of records. (EDIT: not actually storing transact...
Chausses asked 27/3, 2012 at 10:11

5

Solved

How to import CSV/TSV data to Couch DB?
Kho asked 8/3, 2011 at 21:13

6

Solved

I cannot replicate between two couchdb servers, so I would like to dump to file from one server and load from file into the other server. I used this statement to dump and it worked fine: curl -X...
Yajairayajurveda asked 24/7, 2012 at 21:24

8

Solved

I was looking into the possibility of using CouchDB. I heard that it was similar to Lotus Notes which everyone loves to hate. Is this true?
Canned asked 3/10, 2008 at 16:22

4

Solved

I haven't seen the question asked/answered for over a year, and I'm sure there have a been a lot of changes in that time. If you are using CouchDB in a .Net/C# environment (in production), I...
Brogdon asked 26/8, 2010 at 21:17

11

Does anyone know how can I reset the username and password for CouchDB ?
Ronnie asked 19/3, 2012 at 6:19

1

I am trying to setup a CouchDB deployment that needs to have the ability to return gzip'd responses (12mb uncompressed vs 400kb compressed responses). I also need to have SSL support and CORS. I h...
Glossator asked 28/9, 2016 at 13:21

4

Solved

I have a VERY basic view defined in CouchDB: function(doc) { if(doc.date && doc.erc) { emit(doc.date, doc.erc); } } It simply pulls ALL documents and sorts by dates. I've tried appen...
Triviality asked 17/3, 2011 at 16:35

2

I'm getting started with CouchDB, and have started building an application. I can write and read just fine using CURL, but i've started to try and search, using _find, and i get an error stating "R...
Deil asked 8/4, 2018 at 17:13

2

I am using Mango query in couch db for almost every query to find the documents. Here I am facing a problem in fetching all the documents matching the given conditions. The problem is that the defa...
Gwendolin asked 11/8, 2017 at 10:20

© 2022 - 2025 — McMap. All rights reserved.