Skip to content

Commit dc98043

Browse files
committed
chore: adjust defaults for bulk rendering
1 parent b371f69 commit dc98043

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Configuration/ConfigService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,19 +167,19 @@ private void ConfigGhosts(ConfigFile config)
167167
MaximumGhostColours = config.Bind(
168168
"2.3 - Ghosts - Offline Ghosts",
169169
"3. Max Ghost Colours",
170-
24,
170+
32,
171171
new ConfigDescription(
172172
"Maximum number of ghost colours to show.\n\n" +
173173
"Increasing this can reduce performance.\n\n" +
174174
"Set to 1 for maximum performance, but all\n" +
175175
"ghosts will be the same colour.",
176-
new AcceptableValueRange<int>(1, 128)
176+
new AcceptableValueRange<int>(1, 64)
177177
)
178178
);
179179
MaximumGhostCacheMegabytes = config.Bind(
180180
"2.3 - Ghosts - Offline Ghosts",
181181
"4. Ghost Cache Size (MB)",
182-
512,
182+
2048,
183183
new ConfigDescription(
184184
"Maximum disk space used by downloaded ghost files",
185185
new AcceptableValueRange<int>(64, 4096)));

Ghosting/Playback/GhostRepository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public void Dispose()
3434

3535
public const string ClientKey = "Ghosts";
3636
private const string CacheIndexKey = "ghost-cache-index";
37-
private const int MaxConcurrentDownloads = 4;
38-
private const int MaxConcurrentParses = 1;
37+
private const int MaxConcurrentDownloads = 15;
38+
private const int MaxConcurrentParses = 5;
3939

4040
private readonly IModStorage _modStorage;
4141
private readonly GhostReaderFactory _ghostReaderFactory;

0 commit comments

Comments
 (0)