Add an invalidate method to the cache class.
parent
0683a07081
commit
5d6a42a22e
|
@ -492,5 +492,15 @@ namespace Opensim.Framework
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Invalidate(LLUUID uuid)
|
||||||
|
{
|
||||||
|
if(!m_Lookup.ContainsKey(uuid))
|
||||||
|
return;
|
||||||
|
|
||||||
|
CacheItemBase item = m_Lookup[uuid];
|
||||||
|
m_Lookup.Remove(uuid);
|
||||||
|
m_Index.Remove(item);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue