Re: Java STM

2009-07-12 Thread Jon Harrop
On Monday 13 July 2009 01:55:07 Mark Volkmann wrote: > Is there another STM implementation that enforces its use like this? I assume Haskell tells you at compile time. -- Dr Jon Harrop, Flying Frog Consultancy Ltd. http://www.ffconsultancy.com/?e --~--~-~--~~~---~--

Re: Java STM

2009-07-12 Thread Mark Volkmann
On Sun, Jul 12, 2009 at 7:07 PM, Vagif Verdi wrote: > > Potentially interesting library for clojurians. Java STM > implementation: http://www.deucestm.org/ As best I can tell, this is yet another "on your honor" STM implementation. What I mean is that as long as you use the library correctly in e

Java STM

2009-07-12 Thread Vagif Verdi
Potentially interesting library for clojurians. Java STM implementation: http://www.deucestm.org/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegro

Re: Using Clojure for complex database driven applications

2009-07-12 Thread Meikel Brandmeyer
Hi, Am 12.07.2009 um 02:14 schrieb Eugen Dueck: Sure. It is currently just a k. Will add it tomorrow. In case I want to make changes to it, what's the preferred way to submit patches? I'm not familiar with git yet, but willing to learn. I only need a keyword, like "do a github pull request"

Re: Why do Enlive template functions return a seq instead of a str?

2009-07-12 Thread Christophe Grand
Hi ! On Sat, Jul 11, 2009 at 7:31 PM, Jarkko Oranen wrote: > On Jul 11, 6:01 pm, Robert Campbell wrote: > > Hey guys, > > > > I'm just curious why Christophe chose to return seq instead of a str > > for Enlive for his template functions. > > Most likely Enlive generates each of those fragments

Re: Using Clojure for complex database driven applications

2009-07-12 Thread Eugen Dueck
On Jul 12, 3:37 am, Meikel Brandmeyer wrote: > May I add your patch to clojureql? Sure. It is currently just a * copy-and-paste of oll files containing the word mysql * basically search-and-replace mysql => postgresql * small changes to the auto-inc and primary key stuff In case I want to make

Re: Compilation troubles...

2009-07-12 Thread Morgan Allen
> Note that no matter how you specify it, it must be in classpath and it   > must exist at the JVM used by Clojure is launched. Thanks again. > Absolutely. Note that you're compiling a namespace, not a file. Any   > namespaces you use or require while defining your namespace will also   > be co

Re: Compilation troubles...

2009-07-12 Thread Stephen C. Gilardi
On Jul 12, 2009, at 7:28 AM, Morgan Allen wrote: Thanks for the info- it works just fine now. A couple of questions, though: 1- How would I change the 'classes' directory to something else? There are at least two ways: You can specify it as a property on the command line you use to launch

Re: Compile Time Partial Evaluation

2009-07-12 Thread Tayssir John Gabbour
Hi Tim, On Jul 11, 4:39 am, Tim Snyder wrote: > I've been experimenting with the idea of performing compile-time > partial evaluation of calls where possible, using a macro. I must > preface this discussion that I realize it is a bit of an abuse of > macros. This isn't an abuse at all. If I un

Re: Compilation troubles...

2009-07-12 Thread Morgan Allen
Thanks for the info- it works just fine now. A couple of questions, though: 1- How would I change the 'classes' directory to something else? 2- Can I still use/require other files that haven't been compiled ahead of time? Much obliged. --~--~-~--~~~---~--~~ You