diff options
author | Hans Bolinder <[email protected]> | 2016-12-22 09:10:11 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-01-11 09:34:59 +0100 |
commit | e083770cdea7b1dfdc9b74a3ae58b1cc8da8f3a9 (patch) | |
tree | 4eb58d2d4f42161b212c2de45e09e685f74fa23b | |
parent | 7a6ea7e9946e72a03167145c476e66ee77098b6e (diff) | |
download | otp-e083770cdea7b1dfdc9b74a3ae58b1cc8da8f3a9.tar.gz otp-e083770cdea7b1dfdc9b74a3ae58b1cc8da8f3a9.tar.bz2 otp-e083770cdea7b1dfdc9b74a3ae58b1cc8da8f3a9.zip |
dialyzer: Compress a few more ETS tables
-rw-r--r-- | lib/dialyzer/src/dialyzer_codeserver.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/src/dialyzer_codeserver.erl b/lib/dialyzer/src/dialyzer_codeserver.erl index 5028c4f3ba..72180e89e9 100644 --- a/lib/dialyzer/src/dialyzer_codeserver.erl +++ b/lib/dialyzer/src/dialyzer_codeserver.erl @@ -130,7 +130,7 @@ ets_set_to_set(Table) -> ets:foldl(Fold, sets:new(), Table). ets_read_concurrent_table(Name) -> - ets:new(Name, [{read_concurrency, true}]). + ets:new(Name, [compressed, {read_concurrency, true}]). %%-------------------------------------------------------------------- |