Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 8379 invoked from network); 26 Aug 2009 13:52:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Aug 2009 13:52:07 -0000 Received: (qmail 58546 invoked by uid 500); 26 Aug 2009 13:52:06 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 58477 invoked by uid 500); 26 Aug 2009 13:52:06 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 58467 invoked by uid 99); 26 Aug 2009 13:52:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:52:06 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of daniel.truemper@googlemail.com designates 209.85.218.211 as permitted sender) Received: from [209.85.218.211] (HELO mail-bw0-f211.google.com) (209.85.218.211) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:51:55 +0000 Received: by bwz7 with SMTP id 7so169017bwz.11 for ; Wed, 26 Aug 2009 06:51:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:message-id:from:to :content-type:content-transfer-encoding:mime-version:subject:date :x-mailer; bh=dj8nZhPlfH8UagecXmn286x4tBsdrUOBjLdZMuWXQKU=; b=lBydT9Iy3cf/rUUmr/wMcmAyuvzNO7e76FWFnFZrKDrC76bOYBjBpqtVdwts/cLBbt q9yFnCGGVD1wEc/pFAMctuQYRllJrYm6W/H1xTyLVH3H9H13ZzdHuBSU8jmC7yliG/bc BLynimf0G3pLjiTFi4cbNb2SY43ndttwOuaAI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:from:to:content-type:content-transfer-encoding :mime-version:subject:date:x-mailer; b=CO1Fbj5Loy/aBJPjNlVA83D8zWlw9oE4baBuASZSGU5T9gng+T2q8/cwoelPEMpN2M KKgw+oGugSKO1ZlOKuxj5kmz32L4qWBrenlTK3ST9Z2y/l17twxpOLOI4+UzgKTdOnej ZdJ44aj8YX9e+rcW6IHrnhwZkolfvyF4n/IFQ= Received: by 10.103.126.36 with SMTP id d36mr3515816mun.104.1251294693681; Wed, 26 Aug 2009 06:51:33 -0700 (PDT) Received: from hence22.org ([85.131.190.91]) by mx.google.com with ESMTPS id j10sm6786072mue.45.2009.08.26.06.51.32 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Aug 2009 06:51:32 -0700 (PDT) Received: from vandusen.neofonie.priv (crt-01-tr.neofonie.de [81.17.210.28]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by hence22.org (Postfix) with ESMTPSA id 0EE283E4C2 for ; Wed, 26 Aug 2009 15:51:29 +0200 (CEST) Message-Id: <143417AD-A377-4342-B2F0-14617E223499@googlemail.com> From: =?ISO-8859-1?Q?Daniel_Tr=FCmper?= To: user@couchdb.apache.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v936) Subject: startkey_docid Date: Wed, 26 Aug 2009 15:51:31 +0200 X-Mailer: Apple Mail (2.936) X-Virus-Checked: Checked by ClamAV on apache.org Had some time to get some more details about my problem. My question is: does the document id passed as 'startkey_docid' need to be encoded as JSON String? Because I see some strange effects: With the document ids being "testdoc1", "testdoc2", "testdoc3" the startkey_docid does not work at all. With the document ids being the md5 of an url I have the problem that 'startkey_docid=md5' works but 'startkey_docid="md5"' does not. Example: startkey=["DocType", "POST"]&endkey=["DocType", "POST"]&startkey_docid=md5 works but startkey=["DocType", "POST"]&endkey=["DocType", "POST"]&startkey_docid="md5" does not... Unfortunately the jcouchdb API converts the startkey_docid parameter to a JSON String, so paging does not work at the moment... Any ideas? Daniel