Hi,all I wrote a memcached client for clojure wrapping xmemcached.Xmemcached is an opensource high performance memcached client for java.
It's name is clj-xmemcached,and it is on github https://github.com/killme2008/clj-xmemcached A basic example: (ns demo (:use [clj-xmemcached.core])) (def client (xmemcached "localhost:12000")) (xset client "key" "value") (prn (xget client "key")) (xcas client "key" #(str % " update")) (xshutdown client) More detail please visit the github homepage. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en