You are here

function http_request_clear_cache in Feeds 7

Same name and namespace in other branches
  1. 8.2 libraries/http_request.inc \http_request_clear_cache()
  2. 6 libraries/http_request.inc \http_request_clear_cache()
  3. 7.2 libraries/http_request.inc \http_request_clear_cache()

Clear cache for a specific URL.

1 call to http_request_clear_cache()
FeedsHTTPFetcher::clear in plugins/FeedsHTTPFetcher.inc
Clear caches.

File

libraries/http_request.inc, line 227
Download via HTTP.

Code

function http_request_clear_cache($url) {
  cache_clear_all('feeds_http_download_' . md5($url), 'cache');
}