Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
service
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
Freenet DSL
Who's Online
5 user(s) are online (4 user(s) are browsing encyclopedia)

Members: 0
Guests: 5

more...
partner

Internet Cache Protocol

The Internet Cache Protocol (ICP) is a protocol (computing) used for coordinating web caches. Its purpose is to find out the most appropriate location to retrieve a requested object from in the situation where multiple caches are in use at a single site. The goal is to use the caches as efficiently as possible, and to minimize the number of remote requests to the origniating server.

Hierarchically, a queried cache can either be a parent, a child, a sibling.

Parents usually sit closer to the internet connection than the child. If a child cache cannot find an object, the query will be sent to the parent cache, which will fetch, cache, and pass on the request. While a parent server will resolve cache misses, a sibling will not. Siblings are caches of equal hierarchical status, whose purpose is to distribute the load amongst the siblings.

When a request comes into one cache in a cluster of siblings, ICP is used to query adjacent caches for the object being requested. If the adjacent cache has the object, it will be transferred from the adjacent cache, instead of being queries from the original server. This is often called a near miss --the object was not found in the cache (a miss ) but it was loaded from a nearby cache, instead of from a remote server.

The ICP protocol was designed to be lightweight in order to minimize round-trip time between caches. It is intended for unreliable but quick connections, using short time-outs before a cache starts to retrieve an object on its own. User Datagram Protocol is commonly used as transport layer.

The ICP protocol is described in RFC 2186, its application to hierarchy web caching in RFC 2187.

Web proxies that support ICP include:

  • Squid cache
  • Microsoft Proxy
  • Cisco Content Engine
  • HTCP, designed as a successor to ICP, attempts to handle various problems found in ICP deployments.

    =External links=

    *RFC 2186 ICP version 2 *RFC 2187 Application of ICP version 2