The problem is that you are using random incorrectly. random:seed/0 will seed the random number generator with the very same seed always. This is not good for what you want. Rather, you can use random:seed(erlang:now()) to seed it with another number, namely the current time.
"What happens if two calls come very close?" you may ask. Well, the Erlang guys thought about this, so now/0 is guaranteed to always return increasing numbers:
Returns the tuple {MegaSecs, Secs, MicroSecs} which is the
elapsed time since 00:00 GMT, January 1, 1970 (zero hour) on the
assumption that the underlying OS supports this. Otherwise, some
other point in time is chosen. It is also guaranteed that subseā
quent calls to this BIF returns continuously increasing values.
Hence, the return value from now() can be used to generate
unique time-stamps, and if it is called in a tight loop on a
fast machine the time of the node can become skewed.
(emphasis mine)
Also note that the random PRNG is per-process, so you should always start your process up with a seeder call:
init([..]) ->
random:seed(erlang:now()),
[..]
{ok, #state { [..] }}.
Using references for this is perhaps possible, but I don't think it is a viable one. The solution goes over erlang:ref_to_list/1 and it is not pretty.
randommodule is perfectly fine for this. – nmichaels Feb 11 '11 at 21:59