uwiger / gproc

Extended process registry for Erlang
Apache License 2.0
1.07k stars 232 forks source link

write_concurrency on oredered_set has no effect? #131

Closed benbro closed 7 years ago

benbro commented 7 years ago

The ets doc says about {write_concurrency,boolean()}: Table type ordered_set is not affected by this option

https://github.com/uwiger/gproc/blob/master/src/gproc.erl#L2748

uwiger commented 7 years ago

This is true. It never did have any effect. The docs should say that. :)

Hopefully, OTP will eventually introduce an ordered_set type that actually scales with multiple cores. There are prototypes, but nothing in the pipeline, as far as I know.

benbro commented 7 years ago

Thanks