<?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: Performance Patch for Propel im symfony</title>
	<atom:link href="http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/</link>
	<description>Fabians random thoughts about work and private life</description>
	<lastBuildDate>Sat, 02 Jul 2011 11:40:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bert-Jan</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-2236</link>
		<dc:creator>Bert-Jan</dc:creator>
		<pubDate>Thu, 10 Jan 2008 21:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-2236</guid>
		<description>Correction: the includes in the subclasses are also gone. They were just some files from Propel 1.2 that 1.3 didn&#039;t replace when I installed the plugin and ran propel-13-build-model.</description>
		<content:encoded><![CDATA[<p>Correction: the includes in the subclasses are also gone. They were just some files from Propel 1.2 that 1.3 didn&#8217;t replace when I installed the plugin and ran propel-13-build-model.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bert-Jan</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-2205</link>
		<dc:creator>Bert-Jan</dc:creator>
		<pubDate>Wed, 09 Jan 2008 08:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-2205</guid>
		<description>I&#039;m using Propel 1.3 in my current project and with addIncludes set to false the includes in the base classes are actually gone. I haven&#039;t tested to see where the include is put when addIncludes is turned on.
The include statement at the top of the subclasses (under model/) is still there though.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using Propel 1.3 in my current project and with addIncludes set to false the includes in the base classes are actually gone. I haven&#8217;t tested to see where the include is put when addIncludes is turned on.<br />
The include statement at the top of the subclasses (under model/) is still there though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sinon</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-78</link>
		<dc:creator>Sinon</dc:creator>
		<pubDate>Thu, 11 Oct 2007 14:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-78</guid>
		<description>yeah, I always used the first, because it&#039;s the same entity, and unless it is modified from call to call, its faster either way..  I think its just better coding..</description>
		<content:encoded><![CDATA[<p>yeah, I always used the first, because it&#8217;s the same entity, and unless it is modified from call to call, its faster either way..  I think its just better coding..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thierry</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-77</link>
		<dc:creator>Thierry</dc:creator>
		<pubDate>Thu, 11 Oct 2007 09:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-77</guid>
		<description>Definitely they should have placed the include in the if statement. Good fix!
Which version of Propel has this problem?</description>
		<content:encoded><![CDATA[<p>Definitely they should have placed the include in the if statement. Good fix!<br />
Which version of Propel has this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-76</link>
		<dc:creator>Fabian</dc:creator>
		<pubDate>Thu, 11 Oct 2007 09:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-76</guid>
		<description>Hi Eric,
thanks for your comment. you are right. If used with standard autoloading in symfony the call is not required at all. But this is propel generated code. Which, I assume, should work also outside symfony. so from that the cleanest solution is to keep the include, just put it where it is absolutely needed.

But perhaps thats a good idea for an improvement the code compacter. It already removes comments to reduce the file size. It could also remove the include_once calls</description>
		<content:encoded><![CDATA[<p>Hi Eric,<br />
thanks for your comment. you are right. If used with standard autoloading in symfony the call is not required at all. But this is propel generated code. Which, I assume, should work also outside symfony. so from that the cleanest solution is to keep the include, just put it where it is absolutely needed.</p>
<p>But perhaps thats a good idea for an improvement the code compacter. It already removes comments to reduce the file size. It could also remove the include_once calls</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.hma-info.de/2007/10/10/performance-patch-for-propel-im-symfony/comment-page-1/#comment-75</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 11 Oct 2007 08:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.hma-info.de/blog/2007/10/10/performance-patch-for-propel-im-symfony/#comment-75</guid>
		<description>Hello

I think you can remove this include_once call thank to symfony&#039;s autoloading system ;)

Just take a look at the config_autoload.yml.php file in the cache directory and you will see that every class defined in your model is registered in this file.</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>I think you can remove this include_once call thank to symfony&#8217;s autoloading system <img src='http://blog.hma-info.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just take a look at the config_autoload.yml.php file in the cache directory and you will see that every class defined in your model is registered in this file.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

