Re: Routing HTTP/ JSON in clojure

2012-09-05 Thread Russell Whitaker
On Tue, Sep 4, 2012 at 7:05 PM, gaz jones wrote: > We do all of the things you mention (minus the replay, but that would > be trivial) in Clojure where I work, and it is remarkably easy. We > use: > > * ring + compojure and an embedded jetty server to create lightweight > webservers > * the Chesh

Re: Routing HTTP/ JSON in clojure

2012-09-05 Thread Mayank Jain
On Wed, Sep 5, 2012 at 1:35 PM, abp wrote: > For a decent intro to ring and compojure you probably want to watch > http://skillsmatter.com/podcast/home/functional-web > It's an introduction to the libraries by their author/maintainer, James > Reeves. > > Thanks for the link. -- You received thi

Re: Routing HTTP/ JSON in clojure

2012-09-05 Thread abp
For a decent intro to ring and compojure you probably want to watch http://skillsmatter.com/podcast/home/functional-web It's an introduction to the libraries by their author/maintainer, James Reeves. On Wednesday, September 5, 2012 9:56:51 AM UTC+2, David Dawson wrote: > > Thanks guys! > > I'll

Re: Routing HTTP/ JSON in clojure

2012-09-05 Thread David Dawson
Thanks guys! I'll go with ring + compojure bundled with cheshire json and clojuremongodb as a starting point and see where I get to. I'm all in favour of pleasant suprises! David. On Wednesday, 5 September 2012 03:05:33 UTC+1, Gaz wrote: > > We do all of the things you mention (minus the replay

Re: Routing HTTP/ JSON in clojure

2012-09-04 Thread gaz jones
We do all of the things you mention (minus the replay, but that would be trivial) in Clojure where I work, and it is remarkably easy. We use: * ring + compojure and an embedded jetty server to create lightweight webservers * the Cheshire JSON encoding/decoding library for all JSON purposes (https:

Re: Routing HTTP/ JSON in clojure

2012-09-04 Thread Russell Whitaker
On Tue, Sep 4, 2012 at 4:45 PM, David Dawson wrote: > Hiya! > > I saw the names, but then was swamped by moustache, noir and others that at > first glance appear to be in similar spaces. I found it a bit difficult to > pick out the various specialisms or layers each library is aiming at tbh. > So

Re: Routing HTTP/ JSON in clojure

2012-09-04 Thread David Dawson
Hiya! I saw the names, but then was swamped by moustache, noir and others that at first glance appear to be in similar spaces. I found it a bit difficult to pick out the various specialisms or layers each library is aiming at tbh. So, I thought it best to look for some guidance if possible fr

Re: Routing HTTP/ JSON in clojure

2012-09-04 Thread Russell Whitaker
On Tue, Sep 4, 2012 at 1:52 PM, David Dawson wrote: > Hiya, > > So, I'm a clojure newbie... and I've been asked to evaluate a few different > technology options for a project I've been handed. > > The end result will need to be a 'router' that accepts JSON messages over > HTTP, store them into som

Routing HTTP/ JSON in clojure

2012-09-04 Thread David Dawson
Hiya, So, I'm a clojure newbie... and I've been asked to evaluate a few different technology options for a project I've been handed. The end result will need to be a 'router' that accepts JSON messages over HTTP, store them into some datastore (ideally one of the ones available on cloudfoundry