Skip to content

Commit

Permalink
Use numbers without '_' for OTP 22
Browse files Browse the repository at this point in the history
  • Loading branch information
mworrell authored Oct 2, 2024
1 parent 52f8332 commit 1439867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filezcache_entry_manager.erl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
-define(TIMEOUT, infinity).

% Max cache size and garbage collection setings
-define(GC_MAX_BYTES, 10_737_418_240). % 10G
-define(GC_MAX_BYTES, 10737418240). % 10G
-define(GC_INTERVAL, 1000).

-define(GC_BATCH_PERIODIC, 500).
Expand All @@ -63,7 +63,7 @@
-define(TICKS_RECENT, 1).

% Periodically write the log to disk (10 min)
-define(WRITE_LOG_INTERVAL, 600_000).
-define(WRITE_LOG_INTERVAL, 600000).

% Names of ETS tables
-define(FILE_ENTRY_TAB, filezcache_entries_tab).
Expand Down

0 comments on commit 1439867

Please sign in to comment.