Clears the cache for the URL key passed from all the caches, including the delta token and document cache.
id<Caching> cacheLocal = [[Cache alloc] init];
NSError* error = nil;
if ([cacheLocal clearCacheForUrlKey:urlKey withError:&error]) {
NSLog("Clear Cache Error : %@", error);
return;
}