Re: memorize-clj

2013-04-30 Thread Alex Fowler
ojure.core/memoize >>> function >>> built-in, as well as https://github.com/clojure/core.memoize for more >>> complicated stuff. >>> >>> >>> On Sun, Apr 28, 2013 at 11:51 PM, Jorge Urdaneta >>> >>> > wrote: >>>

Re: memorize-clj

2013-04-29 Thread Chris Ford
clojuredocs.org/clojure_core/clojure.core/memoize >> function >> built-in, as well as https://github.com/clojure/core.memoize for more >> complicated stuff. >> >> >> On Sun, Apr 28, 2013 at 11:51 PM, Jorge Urdaneta < >> jorge.urdan...@gmail.com> wrote: &g

Re: memorize-clj

2013-04-28 Thread Baishampayan Ghose
jure has the http://clojuredocs.org/clojure_core/clojure.core/memoize > function > built-in, as well as https://github.com/clojure/core.memoize for more > complicated stuff. > > > On Sun, Apr 28, 2013 at 11:51 PM, Jorge Urdaneta > wrote: > >> Hi, >> >> I st

Re: memorize-clj

2013-04-28 Thread Jorge Urdaneta
mailto:jorge.urdan...@gmail.com>> wrote: Hi, I started a library called memorize-clj https://github.com/jorgeu/memorize-clj It provides a function "memorize" that take a function and cache its results using guava cache. Of course the function must be pure and th

Re: memorize-clj

2013-04-28 Thread Jorge Urdaneta
Leonardo Borges www.leonardoborges.com <http://www.leonardoborges.com> On Mon, Apr 29, 2013 at 1:51 PM, Jorge Urdaneta mailto:jorge.urdan...@gmail.com>> wrote: Hi, I started a library called memorize-clj https://github.com/jorgeu/memorize-clj It provides a function "me

Re: memorize-clj

2013-04-28 Thread Gary Trakhman
Clojure has the http://clojuredocs.org/clojure_core/clojure.core/memoize function built-in, as well as https://github.com/clojure/core.memoize for more complicated stuff. On Sun, Apr 28, 2013 at 11:51 PM, Jorge Urdaneta wrote: > Hi, > > I started a library called memorize-clj https://g

Re: memorize-clj

2013-04-28 Thread Leonardo Borges
As a matter of fact Clojure core has it :) Check it out: http://clojuredocs.org/clojure_core/clojure.core/memoize Leonardo Borges www.leonardoborges.com On Mon, Apr 29, 2013 at 1:51 PM, Jorge Urdaneta wrote: > Hi, > > I started a library called memorize-clj https://github.c

memorize-clj

2013-04-28 Thread Jorge Urdaneta
Hi, I started a library called memorize-clj https://github.com/jorgeu/memorize-clj It provides a function "memorize" that take a function and cache its results using guava cache. Of course the function must be pure and the parameters should be easy to compare and get a hashcode.