Making the inventory cache static, so that there's less timers.

fsassets
Diva Canto 2015-06-04 07:10:06 -07:00
parent ea5aa82c2c
commit a433a40980
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace OpenSim.Services.Connectors
private int m_requestTimeoutSecs = -1;
private const double CACHE_EXPIRATION_SECONDS = 8.0;
private ExpiringCache<UUID, InventoryItemBase> m_ItemCache = new ExpiringCache<UUID,InventoryItemBase>();
private static ExpiringCache<UUID, InventoryItemBase> m_ItemCache = new ExpiringCache<UUID,InventoryItemBase>();
public XInventoryServicesConnector()
{