vote up 4 vote down star
3

Currently, I've got an expensive license for a reverse proxy server in an environment that is mostly Tomcat.

I'm thinking of one or both of the following upgrades.

  1. Using Squid instead of the expensive licensed product.

  2. Using some Apache2 settings for caching. Right now, I'm vague on the details, but perhaps mod_proxy will work here?

Where should I invest my time? What's a good, low-risk reverse proxy approach?

flag

4 Answers

vote up 5 vote down check

Depending on what you want to cache and if you can easily determine this by different paths.

Assume that all files you want to cache are local files anyway, it might be a good idea to use a rewrite rule to map directly to the files instead of serving them on the tomcat server.

A Squid approach is probably better when you cannot determine which subdirectories contain cachable files (e.g. when they are generated by a servlet)

Another possibility that you may want to evaluate is Varnish to enable caching for more complicated setups.

In any variant, be sure to check that your web application generates proper URLs for redirects and within the html code, otherwise you will get problems when URLs point to the internal name of the proxied servers.

To answer your question, I would suggest evaluating the apache2 approach first.

link|flag
vote up -2 vote down

St. Monica’s College Software Development Unit 4: Outcome 1 Jooce Explosion Student Answer Template

  1. Analysis: Objective: The aim of the newly emplaced system is to help Jooce Explosion regulate and control their stock better. In doing this, the overall efficiency of the business will improve as they will not run out of stock, overcompensate for stock and their ingredients will not go off either, saving money and time for the employees responsible for buying new stock. This improvement will help make Jooce Explosion known throughout the community as a good, reliable service.

IPO Chart

Inputs Processing Outputs Payment and orders Quote

Send to suppliers

Send to customers Stock Orders

  1. Design:

I. Layout design Design your table/s and form/s in Visual Dbase. You need not put anything in this report. Print table/s and form/s as produced.

II. Algorithm

Write Pseudocode or Nassi-Schneiderman diagrams for your module

III. Input validation

Draw data structures to identify the validation rules for the inputs required for your solution.

Field:
Data element:
Length: Acceptable values:
Validation:

  1. Development:

• Produce your solution using visual Dbase. • Debug if necessary. • Print out your code and attach printouts to this report.

  1. Testing:

Prepare a test plan and apply it.

Item Tested Purpose of the Test Test Data Expected Result Actual Result Correction or Screen Dump

  1. Evaluation:

Explain strategies to evaluate the software.

Part 6 and 7 will be completed in part B of outcome

  1. Online User Doc:

Prepare user documentation.

  1. Conflicts:
link|flag
vote up 7 vote down

You should definitely look for free and Open-Source solutions first.

  • nginx is a high-performance reverse proxy server.
  • ncache adds caching to nginx (the hottest URLs will be served from memory directly, the rest from disk).
  • Alternatively, the nginx memcached module provides memory-only caching for memcached, which is distributable over multiple servers.
  • In addition, repcached can be used to replicate memcached data automatically, which is useful for failover and upgrades without downtime.
  • Memcachedb adds disk persistence abilities (in addition to in-memory caching) to the mix, at least useful as failover slave for repcached.

Varnish is indeed a compelling caching layer for nginx and a powerful alternative to squid and the mentioned caching components.

link|flag
vote up 1 vote down

Pound is a simple and effective (non-caching) reverse proxy (among its other functions). Pound is distributed under the GPL, but it looks like you'll need Linux to run it.

To quote the home page:

Quite a few people have reported using Pound successfully in production environments. The largest volume reported to date is a site with an average of about 30M requests per day, peaking at over 600 requests/sec.

link|flag
note that Pound doesn't implement caching – Alex Lehmann Oct 11 '08 at 15:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.