[clouchdb-cvs] CVS clouchdb/public_html
peddy
peddy at common-lisp.net
Sun Jun 15 13:44:41 UTC 2008
Update of /project/clouchdb/cvsroot/clouchdb/public_html
In directory clnet:/tmp/cvs-serv1862/public_html
Modified Files:
index.html
Log Message:
Updated news and examples.lisp regarding new CouchDb views API
--- /project/clouchdb/cvsroot/clouchdb/public_html/index.html 2008/06/07 22:37:19 1.19
+++ /project/clouchdb/cvsroot/clouchdb/public_html/index.html 2008/06/15 13:44:41 1.20
@@ -50,6 +50,12 @@
<h2><a name="news">News</a></h2>
<ul>
+ <li><b>Jun 15, 2008</b> Added function create-ps-view and macro
+ ps-view to support the new CouchDb 8.0 style views (which use
+ map/reduce and emit). This code is checked into source control but
+ not yet in a release. See examples.lisp and test.lisp for usage
+ examples.
+ </li>
<li><b>Jun 7, 2008</b> Note: CouchDb's views API has changed in
source control, breaking this library. If you want to use CouchDb
and this library, you'll have better luck sticking to the 7.2
@@ -1149,14 +1155,15 @@
</li>
<li>
<b>start-key</b> Return documents with mapped keys greater than or
- equal to this value.
+ equal to this value. The value may be expressed as a string or an
+ s-epression.
</li>
<li>
<b>start-key-docid</b> The document ID of the first document to return.
</li>
<li>
<b>end-key</b> Return documents with mapped keys less than this
- value.
+ value. The value may be expressed as a string or an s-epression.
</li>
<li>
<b>count</b> The maximum number of rows to return. If zero, returns
@@ -1270,19 +1277,21 @@
<ul>
<li>
<b>key</b> A value to match against the document property or
- properties mapped in the view. Only documents matching this
- value are returned.
+ properties mapped in the view. Only documents matching this value
+ are returned. The value may be expressed as a string or an
+ s-epression.
</li>
<li>
<b>start-key</b> Return documents with mapped keys greater than or
- equal to this value.
+ equal to this value. The value may be expressed as a string or an
+ s-epression.
</li>
<li>
<b>start-key-docid</b> The document ID of the first document to return.
</li>
<li>
<b>end-key</b> Return documents with mapped keys less than this
- value.
+ value. The value may be expressed as a string or an s-epression.
</li>
<li>
<b>count</b> The maximum number of rows to return. If zero, returns
More information about the clouchdb-cvs
mailing list