[clouchdb-cvs] CVS clouchdb/src
peddy
peddy at common-lisp.net
Sat Jun 28 22:55:07 UTC 2008
Update of /project/clouchdb/cvsroot/clouchdb/src
In directory clnet:/tmp/cvs-serv20169/src
Modified Files:
clouchdb.lisp changelog.txt README.txt
Log Message:
Release 0.0.10 checkin
--- /project/clouchdb/cvsroot/clouchdb/src/clouchdb.lisp 2008/06/17 01:13:20 1.28
+++ /project/clouchdb/cvsroot/clouchdb/src/clouchdb.lisp 2008/06/28 22:55:07 1.29
@@ -381,19 +381,6 @@
(json-to-document body))
(t nil)))))
-;; (defun cached-db-request (cache uri &rest args &key parameters &allow-other-keys)
-;; "If a cache is supplied try it first before reqesting from
-;; server. Cache result if cache is not nil."
-;; (cond (cache
-;; (let ((cache-key (if parameters (cons uri parameters) uri)))
-;; (format t "cache key: ~s~%" cache-key)
-;; (let ((cached (get-cached cache-key cache)))
-;; (cond (cached
-;; cached)
-;; (t
-;; (setf (get-cached cache-key cache) (apply #'db-request uri args)))))))
-;; (t (apply #'db-request uri args))))
-
;;
;;
;;
--- /project/clouchdb/cvsroot/clouchdb/src/changelog.txt 2008/03/01 19:19:17 1.8
+++ /project/clouchdb/cvsroot/clouchdb/src/changelog.txt 2008/06/28 22:55:07 1.9
@@ -1,4 +1,13 @@
+0.0.10:
+
+ - Views now use the new map/reduce/emit style JavaScript definitions
+ of CouchDb 0.8+.
+ - Added create-ps-view function and ps-view macro to help build the
+ new views
+ - Added document-update-fn and document-fetch-fn documentation.
+ - Added compact-db function
+
0.0.9:
- View functions now work with complex key types, e.g.
--- /project/clouchdb/cvsroot/clouchdb/src/README.txt 2007/12/01 14:19:59 1.1.1.1
+++ /project/clouchdb/cvsroot/clouchdb/src/README.txt 2008/06/28 22:55:07 1.2
@@ -19,12 +19,10 @@
Clouchdb is written in generic lisp code and should run in most lisp
implementations. At the time of writing it has been tested with SBCL
running on Linux (Fedora 8, 32 bit) and with OpenMCL running on
-Leopard (64bit, Intel). The CouchDb server version was 0.7.0a575 (very
-near the final 0.7 release.)
+Leopard (64bit, Intel). The CouchDb server version was 0.8-incubating.
-Clouchdb relies on the cl-json, Parenscript, and Drakma libraries. The
-included clouchdb-tests package also relies on the Lift unit test
-framework.
+Clouchdb relies on the Parenscript and Drakma libraries. The included
+clouchdb-tests package also relies on the Lift unit test framework.
Installation
More information about the clouchdb-cvs
mailing list