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

This commit is contained in:
Diva Canto
2015-06-04 07:10:06 -07:00
parent ea5aa82c2c
commit a433a40980

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()
{