[ANN] Ubergraph 0.2.0

2016-02-28 Thread Mark Engelberg
https://github.com/Engelberg/ubergraph Ubergraph is a batteries-loaded, immutable graph data structure for Clojure. Clojure's other main graph library is Loom. I built Ubergraph to address Loom's limitations. For example, unlike Loom, Ubergraph supports: * Multigraphs and multidigraphs with pa

Re: Luminus in Techempower benchmarks

2016-02-28 Thread Leif
The Pedestal app is also strangely underperforming in some cases. A Pedestal expert may want to take a look at its configuration. On Saturday, February 27, 2016 at 9:40:28 PM UTC-5, g vim wrote: > > In the latest round of Techempower benchmarks: > > https://www.techempower.com/benchmarks/#secti

Re: [ANN] As I was missing this kind of library in clojure I created relational_mapper for dealing with querying relational databases

2016-02-28 Thread Oliver George
Oops, one more. There was also a Users table (Id, Username, ...) I didn't see a way to handle join from Races to Users based on SupervisorId and AnalystId. On Monday, 29 February 2016 15:52:48 UTC+11, Oliver George wrote: > > Thanks for the details. > > I did a little experimenting and it wo

Re: [ANN] As I was missing this kind of library in clojure I created relational_mapper for dealing with querying relational databases

2016-02-28 Thread Oliver George
Thanks for the details. I did a little experimenting and it works as advertised. Notes below show what I did and found. I was interested to see if this might be suitable as a simple om.next remote for a relational database. Potentially fanciful but it's a topic of interest for me at the mome

Which Java development kit to use with Clojure?

2016-02-28 Thread Alex Miller
Any Java SE development kit 6 through 8 should work so either of the top two is fine. -- 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 - pleas

Which Java development kit to use with Clojure?

2016-02-28 Thread Austin Liu
Could someone advise me on how to proceed? I tried to set up Clojure on my Mac, but it required that I have Java command line tools installed, so I went to install the Java development kit that was required, and there are several. Could someone advise me on what the differences are? The page do

Re: [ANN] boot-new 0.4.0 -- Templates AND Generators for Boot!

2016-02-28 Thread Sean Corfield
Frank Liu wrote on Saturday, February 27, 2016 at 9:39 AM: Love your project. Could you try to add them to the boot official pages and github wiki's third party tasks? The reason is I can never find this project on google (via "boot-new") or anywhere other than your github or search here in the

Re: Luminus in Techempower benchmarks

2016-02-28 Thread Jim Crossley
I just tried a few experiments and realized the :dispatch? option is broken in the latest Immutant release. :( This is a result of some changes we made to better support WebSockets. We were already hoping to get a release out this week, so we'll add that to the list of fixes. Sorry about that,

Re: Implementing Clojure

2016-02-28 Thread evins.mi...@gmail.com
On Sunday, February 28, 2016 at 2:17:19 PM UTC-6, Stephen Nelson wrote: > > You could also consider implementing an interpreter > That's precisely what I am considering--an interpreter or compiler--and exactly why I'm asking these questions. -- You received this message because you are subscr

Re: Implementing Clojure

2016-02-28 Thread evins.mi...@gmail.com
On Sunday, February 28, 2016 at 1:31:40 PM UTC-6, puzzler wrote: > > Look here for some compliance tests: > https://github.com/clojure/clojure/tree/master/test/clojure/test_clojure > > Excellent; thank you. -- You received this message because you are subscribed to the Google Groups "Clojure"

Re: Implementing Clojure

2016-02-28 Thread Stephen Nelson
You could also consider implementing an interpreter On Mon, Feb 29, 2016 at 8:31 AM, Mark Engelberg wrote: > Look here for some compliance tests: > https://github.com/clojure/clojure/tree/master/test/clojure/test_clojure > > On Sun, Feb 28, 2016 at 10:40 AM, evins.mi...@gmail.com < > evins.mi...

Re: Implementing Clojure

2016-02-28 Thread Mark Engelberg
Look here for some compliance tests: https://github.com/clojure/clojure/tree/master/test/clojure/test_clojure On Sun, Feb 28, 2016 at 10:40 AM, evins.mi...@gmail.com < evins.mi...@gmail.com> wrote: > > > On Sunday, February 28, 2016 at 4:13:23 AM UTC-6, puzzler wrote: >> >> Yes, unfortunately, Cl

Re: Is there a clojure equivalent of ghc-mod? If not, what are the challenges?

2016-02-28 Thread Bozhidar Batsov
They use the same backend, btw - https://github.com/clojure-emacs/cider-nrepl On 28 February 2016 at 01:14, David Della Costa wrote: > Are you looking for something like CIDER, > > https://github.com/clojure-emacs/cider > > or maybe fireplace? > > https://github.com/tpope/vim-fireplace > > Think

Re: Implementing Clojure

2016-02-28 Thread evins.mi...@gmail.com
On Sunday, February 28, 2016 at 4:13:23 AM UTC-6, puzzler wrote: > > Yes, unfortunately, Clojure doesn't have an actual spec. The lack of a > spec probably helps keep the language more "agile", but I know several > people who automatically discount the language because of that. > I don't disc

Re: Luminus in Techempower benchmarks

2016-02-28 Thread Jim Crossley
Hi, Luminus uses Immutant, which uses Undertow, so it should be possible to tune the Luminus app to approach the performance of the TechEmpower Undertow app. The relevant options to immutant.web/run [1] are :dispatch?, :io-threads, and :worker-threads. The Undertow app sets IO threads here [2] an

Re: Implementing Clojure

2016-02-28 Thread Mark Engelberg
Yes, unfortunately, Clojure doesn't have an actual spec. The lack of a spec probably helps keep the language more "agile", but I know several people who automatically discount the language because of that. -- You received this message because you are subscribed to the Google Groups "Clojure" gro

Re: [ANN] As I was missing this kind of library in clojure I created relational_mapper for dealing with querying relational databases

2016-02-28 Thread Krzysiek Herod
Thanks Oliver for the feedback, actually I came up with the idea of relational_mapper while working on a project in which I had one "data-model" that contained all the database related information, but the database related code contained a lot of features, and I really like working with small,