|
Wodan
Wodan is a reverse proxy module for the Apache web browser. It caches web
content for better performance. A typical setup would be somewhat like this:
When to use wodan
When not to use wodan, or when to think twice about using it
In general, it all depends on the cachability of your content. Why use wodan and not mod_proxy?
mod_proxy has excellent proxying, so if you only need proxying, you should use mod_proxy instead ofwodan. But caching is a problem with mod_proxy, it wasn't build for reverseproxy caching. Problem with the caching system of mod_proxy is that it is based on the standard HTTP headers and that's not always what you want with reverseproxy caching. The proxy part of wodan's code is based on mod_proxy.
Why use wodan and not squid?
Squid has better caching than mod_proxy, but the problem with squid is like mod_proxy that it wasn't build for reverseproxying. It also uses the standard http headers. We have used squid (and are still using actually) for reverseproxying by changing some of its code, but it isn't as nice as apache. Besides because squids source isn't as nice apache, things like usertracking are more difficult to implement.
|