Re: distributeted computing newby, clojure ...

2011-01-12 Thread Nurullah Akkaya
Hi Nick, You can reach me from this email. If you have a patch, you can send a pull request or email it directly. Regards... -- Nurullah Akkaya http://nakkaya.com On Wed, Jan 12, 2011 at 1:13 AM, Nick Zbinden wrote: >> I have a simple library that mimics newLISP's net-eval command, which >>

Re: distributeted computing newby, clojure ...

2011-01-11 Thread Nick Zbinden
> I have a simple library that mimics newLISP's net-eval command, which > will allow you to evaluate expressions in parallel on remote network > nodes, > > http://nakkaya.com/net-eval.html > > Regards... Very Nice. I looked at it and its what I need. I tested it sucessfully and I am using it with

Re: distributeted computing newby, clojure ...

2011-01-08 Thread Stuart Sierra
Clojure, the language, provides many tools to manage *concurrency*, safe access to mutable state from multiple threads. It does not currently offer much in the way of *parallelism*, making something faster by dividing the work across multiple threads or *distributed* across multiple machines. S

Re: distributeted computing newby, clojure ...

2011-01-08 Thread Nurullah Akkaya
I have a simple library that mimics newLISP's net-eval command, which will allow you to evaluate expressions in parallel on remote network nodes, http://nakkaya.com/net-eval.html Regards... -- Nurullah Akkaya http://nakkaya.com On Sat, Jan 8, 2011 at 4:12 AM, Nick Zbinden wrote: > Hallo, > >

Re: distributeted computing newby, clojure ...

2011-01-08 Thread Eric Lavigne
FlightCaster and Backtype are two startups that have used Clojure for distributed computing. If I were going to do some distributed computing in Clojure, I would start by looking at the tools they use. http://www.datawrangling.com/how-flightcaster-squeezes-predictions-from-flight-data

distributeted computing newby, clojure ...

2011-01-07 Thread Nick Zbinden
Hallo, I would like to talk about two things. General: I have a small project that has really easy to paralyzable problem so I think that a good place to start with parallel programming. Doning it on one pc is simple in clojure. So I tought to myself: You can distribute that. I have never done a