Skip to content

Commit

Permalink
A little more info in the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin committed Mar 4, 2010
1 parent 405761f commit bc91d5c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.markdown
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,3 +3,17 @@
Read more [in my blog post][post]. Read more [in my blog post][post].


[post]: http://dustin.github.com/2010/03/04/erlang-conc.html [post]: http://dustin.github.com/2010/03/04/erlang-conc.html

Rebalancing is pretty slow right now, so initial list builds, appends,
etc... take longer than they should. If you're reading this, I expect
a patch. :)

## Concurrent Awesomeness

Make a 1,000 node balanced conc list

C = conc:from_list(lists:seq(1, 1000)), ok.

Now do something expensive with it (on my system, this takes about 4s):

conc:foreach(fun(_X) -> timer:sleep(1000) end, C).

0 comments on commit bc91d5c

Please sign in to comment.