Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 4
    I remember Rich Hickey recommending this approach in a talk. Commented Sep 13, 2013 at 12:56
  • So what kind of applications are Clojure's own concurrency solutions suited for ? most of the applications will have one or more job queues to be processed in parallel. Commented Sep 13, 2013 at 13:39
  • 2
    In the book "Clojure Programming", they show an example of a parallel, agent-based program which does just this: it uses a LinkedBlockingQueue to keep track of work which needs to be processed. As the agents process tasks, some of the tasks result in pushing more new tasks on the queue. Commented Sep 13, 2013 at 14:45