Clojure的HTTP客户端包 clj-http
fmms
13年前
<p>clj-http 是一个新的 Clojure HTTP 客户端开发包,主要特点是设计简单、可靠、可扩展和可测试。<br /> <br /> <a href="/misc/goto?guid=4958183920711387805" target="_blank">Clojure</a>是一种LISP风格的语言,运行在JVM上。Clojure的一大特色就是其并发机制,它支持不可变的数据结构(Clojure是来自于可持久化的数据结构)。Clojure还有一个特色是<strong>软件事务存储</strong>(Software Transactional Memory,STM),其支持用事务代替锁和互斥器来更新共享内存。STM还是一个有争议的技术,还需要更好的证明自己,一个简单的办法就是访问一个JVM上的实现。</p> <p>示例代码:</p> <pre class="brush:python; toolbar: true; auto-links: false;">(require '[clj-http.client :as client]) (client/get "http://rest-test.heroku.com/") => {:status 200 :headers {"date" "Sun, 01 Aug 2010 07:03:49 GMT" "cache-control" "private, max-age=0, must-revalidate" "content-type" "text/html; charset=utf-8" ...} :body "GET http://rest-test.heroku.com/"}</pre> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1327573261281" target="_blank">http://www.open-open.com/lib/view/home/1327573261281</a></p> <p></p>