I'm guessing you are on an old version of Erlang. Build erlang from
the latest source at erlang.org
-Damien
On Oct 20, 2008, at 9:07 AM, Yuuki Takano wrote:
Hi there,
I inserted 20,000 documents into couchDB, and looked up views of it.
However , couchDB gave up building views because of timed out.
The views were quite simple, such as
function(doc) {
if (doc.type == 'vote') {
emit([doc.service, doc.user, doc.item], doc);
}
}
It seems that couchDB does not support many documents at this
version (0.8.1).
Is that right?
Regards,
-- Yuuki Takano <[EMAIL PROTECTED]>