Re: How to implement a distributed and concurrent system in Clojure?

2013-07-04 Thread Luca Antiga
Not that I'd recommend using it in production, but I experimented with distributed reference types on top of Redis some time ago: https://github.com/lantiga/exoref Several aspects are very rough e.g when the connection to Redis is lost or when it comes to reusing a key. Overall it's probably

Re: ANN: Kern 0.7.0 text parsing lib has fixes, better performance

2013-04-16 Thread Luca Antiga
Great, I just updated clj-toml to 0.7.0 and all tests pass. Thanks Armando Luca On Monday, April 15, 2013 6:38:40 PM UTC+2, Armando Blancas wrote: This is a much needed clean up and perf boost release. https://github.com/blancas/kern Function (parse-file) won't choke with big files, while

Re: [ANN] clj-toml 0.2.0

2013-02-26 Thread Luca Antiga
those combinators quite effectively. On Monday, February 25, 2013 1:26:26 AM UTC-8, Luca Antiga wrote: Quick announcement: clj-toml 0.2.0 is available on Clojarshttps://clojars.org/clj-toml . clj-toml https://github.com/lantiga/clj-toml is a TOMLhttps://github.com/mojombo/tomlparser

[ANN] clj-toml 0.2.0

2013-02-25 Thread Luca Antiga
Quick announcement: clj-toml 0.2.0 is available on Clojarshttps://clojars.org/clj-toml . clj-toml https://github.com/lantiga/clj-toml is a TOMLhttps://github.com/mojombo/tomlparser for Clojure. It was written on top of the Kern https://github.com/blancas/kern library by Armando Blancas

Re: [ANN] clj-toml 0.2.0

2013-02-25 Thread Luca Antiga
Ah :-) Nothing helps like being sick on a weekend... Luca On Monday, February 25, 2013 11:19:25 AM UTC+1, Baishampayan Ghose wrote: Nice! I was thinking about writing a parser myself but you beat me to the punch :) ~BG On Mon, Feb 25, 2013 at 2:56 PM, Luca Antiga luca

ANN: Exoref, Clojure Redis-based reference types.

2013-01-02 Thread Luca Antiga
and suggestions are more than welcome. Cheers! Luca Antiga (@lantiga) -- 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

Re: Question about sets

2012-08-07 Thread Luca Antiga
I'm more or less a newcomer to the language, but I generally feel that having to deal with eventual exceptions, such as in [...] imagine some code that tried to construct a set literal from some variables, catching IllegalArgumentException to deal with duplicate values. is not very much in