Fork me on GitHub
#clojure
<
2016-04-24
>
thug.nasty01:04:09

I want to handle multiple incoming connections to a server i’m writing in clojure. Is there a library I should consider, or am I better off using Java Threads?

richiardiandrea02:04:25

@thug.nasty: I haven't tried it myself but a lot of people say Aleph is pretty good

thug.nasty03:04:05

@richiardiandrea: ok, i’ll check it out; thank you!

ikouchiha05:04:18

I am trying to setup a simple app to do a facebook feed fetch ...for server I am using http-kit ... ( I know the basics of clojure.. the Datastructres and arity, immutable data like stuff) but I am not being able to understand what is being done in this example https://github.com/maxweber/clj-facebook-graph/blob/master/test/clj_facebook_graph/example.clj#L96

ikouchiha05:04:41

I mean I sortof understand it .. but how do I replace the jetty part with http-kit

bwstearns20:04:16

@argentum47: Why do you want to replace it with http-kit?

ikouchiha22:04:46

@bwstearns: because I donot have jetty installed .. anyway I figured it out