An example of how to clear all cached objects
The Cache doesn't have a Clear method so you have to loop through each item and Remove each key:
Dim CacheEnum As IDictionaryEnumerator = Cache.GetEnumerator
While CacheEnum.MoveNext
Cache.Remove(CacheEnum.Key.ToString)
End While