duomark / epocxy

Erlang Patterns of Concurrency
Other
315 stars 43 forks source link

Consider adding a high-water mark on ets_buffer / cxy_ctl #5

Closed jaynel closed 10 years ago

jaynel commented 11 years ago

ets_buffer can be used to collect data from many writers, and periodical read and process the data. When the consumer falls behind the ets_buffer will grow in size. It would be nice to know the largest size since the high-water mark was last reset.

Same goes for the number of concurrent processes when using the concurrency limiter.

jaynel commented 10 years ago

PR #13 fixes this issue