* minor: Properly clear the pushed asset cache statistics where the clear-assets command is used on the region console

* stop waiting for garbage collection when GC total memory used is requested, in case the periodic request of this lags the sim
This commit is contained in:
Justin Clarke Casey
2008-06-10 23:35:04 +00:00
parent 686f16cedd
commit 3794f25ebd
3 changed files with 21 additions and 1 deletions

View File

@@ -143,6 +143,10 @@ namespace OpenSim.Framework.Communications.Cache
public void Clear()
{
m_log.Info("[ASSET CACHE]: Clearing Asset cache");
if (StatsManager.SimExtraStats != null)
StatsManager.SimExtraStats.ClearAssetCacheStatistics();
Initialize();
}