We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bcb688 commit fd92367Copy full SHA for fd92367
deps/rabbit_common/src/file_handle_cache_stats.erl
@@ -21,7 +21,7 @@
21
-define(COUNT_TIME_BYTES, [io_read, io_write]).
22
23
init() ->
24
- _ = ets:new(?TABLE, [public, named_table]),
+ _ = ets:new(?TABLE, [public, named_table, {write_concurrency,true}]),
25
[ets:insert(?TABLE, {{Op, Counter}, 0}) || Op <- ?COUNT_TIME_BYTES,
26
Counter <- [count, bytes, time]],
27
[ets:insert(?TABLE, {{Op, Counter}, 0}) || Op <- ?COUNT_TIME,
0 commit comments