> When you say 'that is not very efficient' what do you base this on? 99.5% of
> the content is CF related pages. Each client/subscriber is running approx 8,000
> CF pages and only few images exist. Am I missing something here with regards to
> what you mean by efficiency? Is your efficiency comment only related to the
> static content piece or is there more to it?
Running static content through IIS/JRun instead of only through IIS is
very inefficient. Not only does it add extra layers (JRun, extra TCP
connection), but it also affects caching. IIS automatically adds some
HTTP headers to improve caching to static content. But from the
perspective of IIS the content it gets from JRun is dynamic so it does
not add those headers. JRun itself doesn't add them either, so you will
end without any cache hints whatsoever for your static content.
Most likely the net effect is that each image will get downloaded once
for every page that uses it, versus once per session + some cache
validation.
Jochem

Signature
Jochem van Dieten
Adobe Community Expert for ColdFusion
ddks2 - 05 Jul 2008 02:07 GMT
Hi Jochen,
Just a quick note to see if there is something funny with these before diving
into these:
Are there any 'issues' with CF data_sources and CF Templates in a distributed
environment? We are getting messages data-source xx not found while data-source
xx is created in cf administrator and also validates.
Also error messages around CSS template not found.
Did you come across these?!
Thanks,
Daniel
ddks2 - 06 Jul 2008 16:49 GMT
Already found the solution to this. Had to do with the instance specific CFAdmin's.
Thanks,
Daniel
Sionathan - 10 Jul 2008 20:35 GMT
Can you please post the link or the steps you took to explore or resolve this? I'm getting the same results, and it's pretty frustrating.
ddks2 - 10 Jul 2008 23:13 GMT
To resolve it we had to define template paths, mappings and data sources for
each of the instances we created. Essentially in our configuration we have 3
instances running with their own JVM config but also their own CF Admin piece
(so their own data sources, mappings etc). Hope this helps or let me know if
you need more info around the IIS configuration of JRun connectors.
daniel