File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ) ) ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments