vote up 1 vote down star

What am I missing here?

When I access /mydatabase/_design/assets/_view/all (CouchDB) I'm getting:

"{"error":"EXIT","reason":"{function_clause,\n    [{couch_httpd,handle_db_request,\n         [{mochiweb_request, ..."

This is my view document:

{"_id":"_design\/assets","_rev":"4243492989","language":"javascript","views":{"all":{"map":"function(doc) { if (doc.type == 'asset') { emit(doc.name, doc); }}"}}}
flag

50% accept rate

2 Answers

vote up 0 vote down

Kristian, your _id is fine. It looks like the error I saw when I used a query that didn't match the API. The view URLs changed in version 0.9. You probably want to upgrade to the new version of CouchDB anyway.

See also this question: http://stackoverflow.com/questions/718039

link|flag
vote up 0 vote down

How did you create the design doc? It looks like there is a '\' in the _id that shouldn't be there. Can you create a new design doc with an _id of "_design/assets"?

link|flag
yes I created the design doc and used _design/assets as id – kristian nissen Oct 2 at 8:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.