<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Rendering Images With IIS Verses an ASP.NET 2.0 Handler</title>
	<atom:link href="http://peterkellner.net/2006/09/04/iisaspnetperf/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterkellner.net/2006/09/04/iisaspnetperf/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iisaspnetperf</link>
	<description>Microsoft Focused, JavaScript,HTML5 (ExtJS, SenchaTouch &#38; Windows 8 Metro)</description>
	<lastBuildDate>Tue, 15 May 2012 21:53:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Peter Kellner</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-529</link>
		<dc:creator>Peter Kellner</dc:creator>
		<pubDate>Mon, 19 May 2008 04:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-529</guid>
		<description>Hi Andy,

No, I never did those tests suggested.  Sorry.</description>
		<content:encoded><![CDATA[<p>Hi Andy,</p>
<p>No, I never did those tests suggested.  Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-530</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 19 May 2008 02:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-530</guid>
		<description>Hi,

thanks, great article... exactly what I wanted to know!

Just wondering, did you ever try the 1k chunks or TransmitFile() methods as suggested in earlier comments?

Cheers
Andy</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>thanks, great article&#8230; exactly what I wanted to know!</p>
<p>Just wondering, did you ever try the 1k chunks or TransmitFile() methods as suggested in earlier comments?</p>
<p>Cheers<br />
Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bret</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-528</link>
		<dc:creator>bret</dc:creator>
		<pubDate>Wed, 18 Oct 2006 18:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-528</guid>
		<description>Great article.  helped me out a log.</description>
		<content:encoded><![CDATA[<p>Great article.  helped me out a log.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stufur</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-527</link>
		<dc:creator>stufur</dc:creator>
		<pubDate>Sat, 16 Sep 2006 10:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-527</guid>
		<description>Did you test the built in function in ASP.NET to transmit files? That way you dont have to bother using the ImageStream and the Image object.

context.Response.TransmitFile(fileName);
context.Response.End();</description>
		<content:encoded><![CDATA[<p>Did you test the built in function in ASP.NET to transmit files? That way you dont have to bother using the ImageStream and the Image object.</p>
<p>context.Response.TransmitFile(fileName);<br />
context.Response.End();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Administrator</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-526</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Wed, 06 Sep 2006 15:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-526</guid>
		<description>Good point.  I&#039;ll fix the example to read 1K  chunks and post immediately.  I think asp.net will buffer automatically anyway so that would be better.  I&#039;m on vacation this week, but will do it next and post the results.

-Peter Kellner</description>
		<content:encoded><![CDATA[<p>Good point.  I&#8217;ll fix the example to read 1K  chunks and post immediately.  I think asp.net will buffer automatically anyway so that would be better.  I&#8217;m on vacation this week, but will do it next and post the results.</p>
<p>-Peter Kellner</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-525</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 06 Sep 2006 04:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2006/09/04/iisaspnetperf/#comment-525</guid>
		<description>Try reading the bitmap in 1024 byte blocks and stream it out as it&#039;s read in.

This will be much faster and incur almost non memory overhead. Your example loads the entire graphic into memory, and if it was a 1GB zip or bmp even, it would surely kill most servers.

Not to mention you can add a isClientConnected for insurance.</description>
		<content:encoded><![CDATA[<p>Try reading the bitmap in 1024 byte blocks and stream it out as it&#8217;s read in.</p>
<p>This will be much faster and incur almost non memory overhead. Your example loads the entire graphic into memory, and if it was a 1GB zip or bmp even, it would surely kill most servers.</p>
<p>Not to mention you can add a isClientConnected for insurance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 25/39 queries in 0.013 seconds using disk: basic
Content Delivery Network via Amazon Web Services: S3: PetersBlogCDN.s3.amazonaws.com

Served from: peterkellner.net @ 2012-05-17 06:04:07 -->
