Re: Clojure version and quil

2016-09-08 Thread Jonathan Fischer
You're probably using the leiningen that's packaged in Ubuntu, right? On Ubuntu 14.04, that's pulling in version 1.7.x, which is positively ancient. Remove the apt packaged version of leiningen and follow the installation instructions on the website (http://leiningen.org) and you'll probably be

ANN: durable-persistence for Clojure and ClojureScript

2016-09-08 Thread Christian Weilbach
Hi, I have started some explorations for durable persitent indices in a cross-platform fashion, that I wanted to for quite some time now. There are some other implementations of persistent datastructures with synchronous IO on the JVM, but I would like to go a step further and generalize over any

Re: ANN: durable-persistence for Clojure and ClojureScript

2016-09-08 Thread dgrnbrg
This sort of thing is also the goal of Datacrypt & Hitchhiker trees (https://github.com/datacrypt-project/hitchhiker-tree), which are designed to be highly optimized for I/O. We've been making progress on the GC and adding new backends--it would be awesome to be able add a CLJS port too :) Bes

Re: [ANN] Clojure 1.9.0-alpha12

2016-09-08 Thread Alex Miller
I've commented on this in multiple other places but for the sake of completeness... Datascript is extending some defrecords to the IHashEq protocol to add custom hash caching. In particular, this extension is adding custom fields __hash and __hasheq, which happen to be the (obvious) names of th

Re: ANN: durable-persistence for Clojure and ClojureScript

2016-09-08 Thread lvh
> On Sep 8, 2016, at 6:39 PM, dgrnbrg wrote: > > This sort of thing is also the goal of Datacrypt & Hitchhiker trees > (https://github.com/datacrypt-project/hitchhiker-tree), which are designed to > be highly optimized for I/O. > > We've been making progress on the GC and adding new backends-

Re: [ANN] Clojure 1.9.0-alpha12

2016-09-08 Thread lvh
Thanks for investigating this in-depth, Alex! Very much appreciated :) Sorry about filing the issue in several places; I genuinely wasn’t sure where the problem was :) > On Sep 8, 2016, at 8:20 PM, Alex Miller wrote: > > I've commented on this in multiple other places but for the sake of > co