public Object remove(int index) {
   ensureInitFastListCache();
   _cache.remove(index);
   return _persistentList.remove(index);
 }
 public boolean remove(Object o) {
   ensureInitFastListCache();
   _cache.remove(o);
   return _persistentList.remove(o);
 }