The other example on that thread has stranger charesteristics:

(defn bench []
>   (time
>    (let [c (chan 100)]
>      (go
>        (dotimes [i 100000] ;; doesn't return for 1e5, takes ~170ms for 1e4
>          (>! c i))
>        (close! c))
>      (loop [i nil]
>        (if-let [x (<! c)]
>          (recur x)
>          i)))))
>

-- 
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 - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to