I suggest you reevaluate your reasons for wanting to go the commercial route rather than using an opensource solution such as Squid.

Squid is used by many large ISPs worldwide and is quite likely the most mature web cache and proxy available. Apart from the cost benefit of not requiring any license fees, Squid has an active community and hundreds of code snippets for different type of configurations. It's also easily expandable, allowing for features such as content manipulation (eg. automatically removing adverts) and even live file scanning to prevent malicious software from being passed along to your users.

Squid also allows for clustering to facilitate load balancing and high availability, and additionally, content routing allows you to create a hierarchical network of proxy servers to serve up content based on your own requirements, such as the varied geographic distribution of your clients.

Many commercial solutions claim higher content caching ratios, but be warned, these higher cache ratios are almost always at the cost of breaking web standards. HTTP headers contain directives specifying information such as expiry dates and whether to allow the object to be cached, as well as a number of other headers which influence caching. Ignoring these headers will break HTTP standards, and content which should be served up dynamically may break as a result of a cached item being served from the proxy server rather than fresh content from the originating web server. Having said this, Squid does allow you to fine-tune cache parameters, allowing you to go so far as to completely override parameters such as 'no-cache' and expiry headers, although going this route is generally not recommended.

I'm also based in Africa, and the value provided by Squid is in most cases quite immense, especially in areas limited to dial-up or low-speed DSL services. Take a look at the Why page on the Squid website for some more compelling reasons.


I used Squid on ISP level, back in 2002. If you have routers that support WCCP you can use multiple hierarchical Squid servers (siblings) and provide high availability. WCCP also knows when the backends are down and in this case the requests continue to go through, what is a good thing that may not happen if you use a transparent proxy alternative.

Web acceleration proxy is just a name for proxy work: it accelerates the connections by serving recently accessed content from a nearer point (the proxy) instead from the original site, so making it faster.