This isn't a bug, you're in a infinite loop constructing go blocks. You should probably move the loops into the go blocks.
David On Sat, Jul 6, 2013 at 7:31 AM, MikeM <michael.messini...@invista.com>wrote: > Got an out of memory when experimenting with core.async channels in go > blocks. The following is a simple example. > > (defn go-loop > [] > (let [c0 (chan)] > (while true > (go > (>! c0 1)) > (go > (println (<! c0)))))) > > ;(.start (Thread. go-loop)) > > Clojure 1.5.1, Java 1.7.0_25 32-bit running under Win7 x64. > > -- > -- > 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/groups/opt_out. > > > -- -- 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/groups/opt_out.