mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* RateMonitor created * NetworkSession Update foreach change to help profiling This just removes the lambda pattern for the foreach so profilers can monitor each line individually. Functionality is unchanged. * Reduce Landblock ctor async work to a single thread This helps reduce ACE thread starvation * NetworkSession cosmetic * NetworkSession cosmetic * NetworkSession currentBundles ConcurrentDictionary to Array This significantly improves the performance of NetworkSession. Arrays are faster than Dictionaries, and we manage concurrency to the elements via currentBundleLocks. We're also able to get away with using an array because the number of elements is only 12. Accessing the indexes of currentBundles should be atomic as it's an array of reference values, compiled as 64 bit. * Add InParallel to database functions that do their underlying work in parallel * DoSessionWork tick outbound messages in series, not in parallel. * NetworkSession should not be interfacing with ActionChains * Don't load landblock ctor resources in parallel Save the threads in the pool for more important work * LandblockManager removed check/recheck This is legacy code from a pattern no longer used. It is no longer required. * Cosmetic |
||
|---|---|---|
| .. | ||
| Cryptography | ||
| Extensions | ||
| AccountDefaults.cs | ||
| ACE.Common.csproj | ||
| ConfigManager.cs | ||
| DatabaseConfiguration.cs | ||
| DbFieldAttribute.cs | ||
| DbGetAggregateAttribute.cs | ||
| DbTableAttribute.cs | ||
| DerethDateTime.cs | ||
| GameConfiguration.cs | ||
| MasterConfiguration.cs | ||
| MySqlConfiguration.cs | ||
| NetworkSettings.cs | ||
| RateLimiter.cs | ||
| RateMonitor.cs | ||
| Time.cs | ||