Clojure 1.8 发布,更新如下:
More string functions in clojure.string (portable to ClojureScript): index-of, last-index-of, starts-with?, ends-with?, includes?
Compiler direct linking - improves performance and startup time
Socket server and socket server REPL - adds the ability to allow remote Clojure REPL connections
Clojure是一种LISP风格的语言,运行在JVM上。Clojure的一大特色就是其并发机制,它支持不可变的数据结构(Clojure是来自于可持久化的数据结构)。Clojure还有一个特色是软件事务存储(Software Transactional Memory,STM),其支持用事务代替锁和互斥器来更新共享内存。STM还是一个有争议的技术,还需要更好的证明自己,一个简单的办法就是访问一个JVM上的实现。
软件详情:https://github.com/clojure/clojure/blob/master/changes.md
下载地址:http://sourceforge.net/projects/clojure/files/
来自:开源中国社区

