<?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: Frameworks: Yay! Nay! How do you decide?</title>
	<atom:link href="http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/</link>
	<description>A web log about web development and internet culture with frequent detours into other stuff.</description>
	<lastBuildDate>Tue, 15 May 2012 22:15:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: tiffany</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-91115</link>
		<dc:creator>tiffany</dc:creator>
		<pubDate>Fri, 14 Nov 2008 22:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-91115</guid>
		<description>That surprised me too Jason. Yahoo! uses PHP extensively, but I don&#039;t know how much they use it for database connectivity and heavy-duty crunching. But as Lerdorf said: PHP wasn&#039;t designed for that. That said, there are plenty of sites using PHP that can handle loads of traffic (like Friendster and Facebook).  And many sites running PHP wisely make wise use of caching (creating static files to serve if there haven&#039;t been changes to the content -- always faster than a DB call).

Rashid: If you&#039;re using a personal framework or library, then yes, you&#039;ve probably built it once, hopefully optimized it, and it works pretty well. I guess my issue is with developers using frameworks without thinking about whether it&#039;s the best option.</description>
		<content:encoded><![CDATA[<p>That surprised me too Jason. Yahoo! uses PHP extensively, but I don&#8217;t know how much they use it for database connectivity and heavy-duty crunching. But as Lerdorf said: PHP wasn&#8217;t designed for that. That said, there are plenty of sites using PHP that can handle loads of traffic (like Friendster and Facebook).  And many sites running PHP wisely make wise use of caching (creating static files to serve if there haven&#8217;t been changes to the content &#8212; always faster than a DB call).</p>
<p>Rashid: If you&#8217;re using a personal framework or library, then yes, you&#8217;ve probably built it once, hopefully optimized it, and it works pretty well. I guess my issue is with developers using frameworks without thinking about whether it&#8217;s the best option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tiffany</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-93332</link>
		<dc:creator>tiffany</dc:creator>
		<pubDate>Fri, 14 Nov 2008 22:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-93332</guid>
		<description>That surprised me too Jason. Yahoo! uses PHP extensively, but I don&#039;t know how much they use it for database connectivity and heavy-duty crunching. But as Lerdorf said: PHP wasn&#039;t designed for that. That said, there are plenty of sites using PHP that can handle loads of traffic (like Friendster and Facebook).  And many sites running PHP wisely make wise use of caching (creating static files to serve if there haven&#039;t been changes to the content -- always faster than a DB call).

Rashid: If you&#039;re using a personal framework or library, then yes, you&#039;ve probably built it once, hopefully optimized it, and it works pretty well. I guess my issue is with developers using frameworks without thinking about whether it&#039;s the best option.</description>
		<content:encoded><![CDATA[<p>That surprised me too Jason. Yahoo! uses PHP extensively, but I don&#8217;t know how much they use it for database connectivity and heavy-duty crunching. But as Lerdorf said: PHP wasn&#8217;t designed for that. That said, there are plenty of sites using PHP that can handle loads of traffic (like Friendster and Facebook).  And many sites running PHP wisely make wise use of caching (creating static files to serve if there haven&#8217;t been changes to the content &#8212; always faster than a DB call).</p>
<p>Rashid: If you&#8217;re using a personal framework or library, then yes, you&#8217;ve probably built it once, hopefully optimized it, and it works pretty well. I guess my issue is with developers using frameworks without thinking about whether it&#8217;s the best option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Z. Muhammad</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-91114</link>
		<dc:creator>Rashid Z. Muhammad</dc:creator>
		<pubDate>Fri, 14 Nov 2008 21:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-91114</guid>
		<description>Speaking for the server side.

I&#039;m of the thinking that the logical progression of development in any shop that maintains more than one application is to build or implement a framework. It only makes sense, one of the biggest axioms of software engineering is to &quot;do it once&quot; and that&#039;s pretty much the purpose of a framework.

How the framework is implemented goes a long way to deal with the answers to your questions on dev time vs. speed (and I would add flexibility). I&#039;ve found that you don&#039;t necessarily have to compromise if your framework is driven by process instead of excessive abstraction - some people just want to configure applications into existence instead of writing them, and if that&#039;s the case they need to change professions.

I use my framework to handle the central plumbing of my applications. If I&#039;m writing multiple applications for my organization, it makes no sense to reimplement the logging, data access, authentication and authorization for each one. The framework allows me to concentrate on the things that make the application unique and not worry about the drudge work over and over. Most importantly, having that core logic implemented once means that you only have to modify it in one place when it needs to be fixed.</description>
		<content:encoded><![CDATA[<p>Speaking for the server side.</p>
<p>I&#8217;m of the thinking that the logical progression of development in any shop that maintains more than one application is to build or implement a framework. It only makes sense, one of the biggest axioms of software engineering is to &#8220;do it once&#8221; and that&#8217;s pretty much the purpose of a framework.</p>
<p>How the framework is implemented goes a long way to deal with the answers to your questions on dev time vs. speed (and I would add flexibility). I&#8217;ve found that you don&#8217;t necessarily have to compromise if your framework is driven by process instead of excessive abstraction &#8211; some people just want to configure applications into existence instead of writing them, and if that&#8217;s the case they need to change professions.</p>
<p>I use my framework to handle the central plumbing of my applications. If I&#8217;m writing multiple applications for my organization, it makes no sense to reimplement the logging, data access, authentication and authorization for each one. The framework allows me to concentrate on the things that make the application unique and not worry about the drudge work over and over. Most importantly, having that core logic implemented once means that you only have to modify it in one place when it needs to be fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Z. Muhammad</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-93331</link>
		<dc:creator>Rashid Z. Muhammad</dc:creator>
		<pubDate>Fri, 14 Nov 2008 21:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-93331</guid>
		<description>Speaking for the server side.

I&#039;m of the thinking that the logical progression of development in any shop that maintains more than one application is to build or implement a framework. It only makes sense, one of the biggest axioms of software engineering is to &quot;do it once&quot; and that&#039;s pretty much the purpose of a framework.

How the framework is implemented goes a long way to deal with the answers to your questions on dev time vs. speed (and I would add flexibility). I&#039;ve found that you don&#039;t necessarily have to compromise if your framework is driven by process instead of excessive abstraction - some people just want to configure applications into existence instead of writing them, and if that&#039;s the case they need to change professions.

I use my framework to handle the central plumbing of my applications. If I&#039;m writing multiple applications for my organization, it makes no sense to reimplement the logging, data access, authentication and authorization for each one. The framework allows me to concentrate on the things that make the application unique and not worry about the drudge work over and over. Most importantly, having that core logic implemented once means that you only have to modify it in one place when it needs to be fixed.</description>
		<content:encoded><![CDATA[<p>Speaking for the server side.</p>
<p>I&#8217;m of the thinking that the logical progression of development in any shop that maintains more than one application is to build or implement a framework. It only makes sense, one of the biggest axioms of software engineering is to &#8220;do it once&#8221; and that&#8217;s pretty much the purpose of a framework.</p>
<p>How the framework is implemented goes a long way to deal with the answers to your questions on dev time vs. speed (and I would add flexibility). I&#8217;ve found that you don&#8217;t necessarily have to compromise if your framework is driven by process instead of excessive abstraction &#8211; some people just want to configure applications into existence instead of writing them, and if that&#8217;s the case they need to change professions.</p>
<p>I use my framework to handle the central plumbing of my applications. If I&#8217;m writing multiple applications for my organization, it makes no sense to reimplement the logging, data access, authentication and authorization for each one. The framework allows me to concentrate on the things that make the application unique and not worry about the drudge work over and over. Most importantly, having that core logic implemented once means that you only have to modify it in one place when it needs to be fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-91072</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 03 Nov 2008 14:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-91072</guid>
		<description>That Rasmus piece about PHP is interesting for me. We often have vendors who want to use PHP when building sites for the Mouse. We decline because they almost always fail load test. Rasmus talks about it not being able to scale to &quot;yahoo&quot; levels and while our traffic isn&#039;t &quot;yahoo&quot; levels we test and optimize at about a tier or two lower than that. Anything that can&#039;t handle over 100,000 simultaneous connections or well over a million hits/actions over a 24 hour period of time won&#039;t launch with us.

That&#039;s not to say we wouldn&#039;t accept it if it could but I think most developers do go the framework route because they don&#039;t really have the time to build exactly what they need for the job and frameworks make it easier to get something that will work quickly.</description>
		<content:encoded><![CDATA[<p>That Rasmus piece about PHP is interesting for me. We often have vendors who want to use PHP when building sites for the Mouse. We decline because they almost always fail load test. Rasmus talks about it not being able to scale to &#8220;yahoo&#8221; levels and while our traffic isn&#8217;t &#8220;yahoo&#8221; levels we test and optimize at about a tier or two lower than that. Anything that can&#8217;t handle over 100,000 simultaneous connections or well over a million hits/actions over a 24 hour period of time won&#8217;t launch with us.</p>
<p>That&#8217;s not to say we wouldn&#8217;t accept it if it could but I think most developers do go the framework route because they don&#8217;t really have the time to build exactly what they need for the job and frameworks make it easier to get something that will work quickly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://tiffanybbrown.com/2008/11/03/franeworks-yay-nay-how-do-you-decide/comment-page-1/#comment-93330</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 03 Nov 2008 14:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1544#comment-93330</guid>
		<description>That Rasmus piece about PHP is interesting for me. We often have vendors who want to use PHP when building sites for the Mouse. We decline because they almost always fail load test. Rasmus talks about it not being able to scale to &quot;yahoo&quot; levels and while our traffic isn&#039;t &quot;yahoo&quot; levels we test and optimize at about a tier or two lower than that. Anything that can&#039;t handle over 100,000 simultaneous connections or well over a million hits/actions over a 24 hour period of time won&#039;t launch with us.

That&#039;s not to say we wouldn&#039;t accept it if it could but I think most developers do go the framework route because they don&#039;t really have the time to build exactly what they need for the job and frameworks make it easier to get something that will work quickly.</description>
		<content:encoded><![CDATA[<p>That Rasmus piece about PHP is interesting for me. We often have vendors who want to use PHP when building sites for the Mouse. We decline because they almost always fail load test. Rasmus talks about it not being able to scale to &#8220;yahoo&#8221; levels and while our traffic isn&#8217;t &#8220;yahoo&#8221; levels we test and optimize at about a tier or two lower than that. Anything that can&#8217;t handle over 100,000 simultaneous connections or well over a million hits/actions over a 24 hour period of time won&#8217;t launch with us.</p>
<p>That&#8217;s not to say we wouldn&#8217;t accept it if it could but I think most developers do go the framework route because they don&#8217;t really have the time to build exactly what they need for the job and frameworks make it easier to get something that will work quickly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

