<?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"
	>
<channel>
	<title>Comments on: a configurable, pluggable, thread safe prioritized bulk loader with object management</title>
	<atom:link href="http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management</link>
	<description>Opensource initiative by Dutch interactive agency dpdk.</description>
	<pubDate>Thu, 09 Feb 2012 01:12:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Marcel</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-436</link>
		<dc:creator>Marcel</dc:creator>
		<pubDate>Sun, 15 Jan 2012 15:32:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-436</guid>
		<description>Fine information, We are checking back frequent to find refreshes.</description>
		<content:encoded><![CDATA[<p>Fine information, We are checking back frequent to find refreshes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coy</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-417</link>
		<dc:creator>Coy</dc:creator>
		<pubDate>Fri, 11 Nov 2011 19:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-417</guid>
		<description>greetings, fantastic blog page, and a good understand! at least one for my book marks.</description>
		<content:encoded><![CDATA[<p>greetings, fantastic blog page, and a good understand! at least one for my book marks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredericka Murnan</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-406</link>
		<dc:creator>Fredericka Murnan</dc:creator>
		<pubDate>Sat, 17 Sep 2011 10:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-406</guid>
		<description>May I maybe repost this to at least one of my sites on this subject? I'd link back to the unique, of program. Let myself know by email everything you think?</description>
		<content:encoded><![CDATA[<p>May I maybe repost this to at least one of my sites on this subject? I&#8217;d link back to the unique, of program. Let myself know by email everything you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rolf Vreijdenberger</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-146</link>
		<dc:creator>Rolf Vreijdenberger</dc:creator>
		<pubDate>Fri, 23 Jul 2010 09:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-146</guid>
		<description>Hey guys,

I can understand the confusion about the naming part. We'll look into that.
@Bart: good post. by default there is just one request, which loads the file, so I think you misunderstood what happens. 

We do however offer the possibility to use a combination of a Sequence and a Loader to be able to fetch the header of the file which contains the filesize, so you can accurately get the total byte size of the files you are about to load. In that way, you can get accurate loading progress without knowing the filesize in advance, it does however need a littlebit of extra time when starting the loader to 'touch' the files. The Sequence and Tasks are part of our package and we like to use building blocks with which we can create different functionality, which is one of the things OOP allows you to do. In this way, we did not have to burden our Loader with this functionality, while at the same time allowing it to happen with the use of another specialized package.

About filesize, we use the package as is, and it is not optimized for a small footprint since we use most of the classes in it in our projects. LoaderMax has been made with a small footprint and no dependencies, our Loader is just a part of this Library. I'm not sure if LoaderMax is tested, but our package is unittested and as such we build on components that work and have proven themselves. 

LoaderMax seems to have the same functionalities as we do, but we hadn't heard of it before, since we've been using the Loader itself for quite some time now, it seems LoaderMax is fairly new? Both packages seem to be able to do about the same but I'm not sure if LoaderMax has object association with it, the ability to have data associated with a loading item. Also, we also have a simple asset manager that integrates with the loader.

I feel our api is simpler since you don't burden the client of our code with the knowledge of which loader to instantiate, the api is conform a lot of other classes in our package which makes it very consistent, it is better in OOP setup, since it doesn't concern itself with how the loaded content is used (no DisplayObject association), but it CAN be done via object association. It can be extended and configured with new Tasks to suit your specific need but comes with sensible defaults for most use cases.

THe philosophy behind the loaders is a little different but they can both have their place. A matter of preference and your use cases I guess.</description>
		<content:encoded><![CDATA[<p>Hey guys,</p>
<p>I can understand the confusion about the naming part. We&#8217;ll look into that.<br />
@Bart: good post. by default there is just one request, which loads the file, so I think you misunderstood what happens. </p>
<p>We do however offer the possibility to use a combination of a Sequence and a Loader to be able to fetch the header of the file which contains the filesize, so you can accurately get the total byte size of the files you are about to load. In that way, you can get accurate loading progress without knowing the filesize in advance, it does however need a littlebit of extra time when starting the loader to &#8216;touch&#8217; the files. The Sequence and Tasks are part of our package and we like to use building blocks with which we can create different functionality, which is one of the things OOP allows you to do. In this way, we did not have to burden our Loader with this functionality, while at the same time allowing it to happen with the use of another specialized package.</p>
<p>About filesize, we use the package as is, and it is not optimized for a small footprint since we use most of the classes in it in our projects. LoaderMax has been made with a small footprint and no dependencies, our Loader is just a part of this Library. I&#8217;m not sure if LoaderMax is tested, but our package is unittested and as such we build on components that work and have proven themselves. </p>
<p>LoaderMax seems to have the same functionalities as we do, but we hadn&#8217;t heard of it before, since we&#8217;ve been using the Loader itself for quite some time now, it seems LoaderMax is fairly new? Both packages seem to be able to do about the same but I&#8217;m not sure if LoaderMax has object association with it, the ability to have data associated with a loading item. Also, we also have a simple asset manager that integrates with the loader.</p>
<p>I feel our api is simpler since you don&#8217;t burden the client of our code with the knowledge of which loader to instantiate, the api is conform a lot of other classes in our package which makes it very consistent, it is better in OOP setup, since it doesn&#8217;t concern itself with how the loaded content is used (no DisplayObject association), but it CAN be done via object association. It can be extended and configured with new Tasks to suit your specific need but comes with sensible defaults for most use cases.</p>
<p>THe philosophy behind the loaders is a little different but they can both have their place. A matter of preference and your use cases I guess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-139</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Wed, 21 Jul 2010 14:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-139</guid>
		<description>I don't think our server guys like the idea of us starting two-requests for every file we load, just to get the size header: it creates extra server load and messes up their error reporting. If we deploy this in a site that's hosted on a CDN those people will go berzerk if the CDN cache was just flushed and every request goes to the source-server (that will be hit twice as hard).

Also naming it Loader is really confusing. I think its bad form to alias a native class (it's technically correct with the packages, but using this in a smart editor like FDT will mess your auto-suggestion something horrid).

How is this better then LoaderMax or the arcane BulkLoader? Both are solutions that dont include a lot of extra code, while for this solution we'll get the a huge chunk of the dpdk libary.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think our server guys like the idea of us starting two-requests for every file we load, just to get the size header: it creates extra server load and messes up their error reporting. If we deploy this in a site that&#8217;s hosted on a CDN those people will go berzerk if the CDN cache was just flushed and every request goes to the source-server (that will be hit twice as hard).</p>
<p>Also naming it Loader is really confusing. I think its bad form to alias a native class (it&#8217;s technically correct with the packages, but using this in a smart editor like FDT will mess your auto-suggestion something horrid).</p>
<p>How is this better then LoaderMax or the arcane BulkLoader? Both are solutions that dont include a lot of extra code, while for this solution we&#8217;ll get the a huge chunk of the dpdk libary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thijs</title>
		<link>http://www.dpdk.nl/opensource/a-configurable-pluggable-thread-safe-prioritized-bulk-loader-with-object-management#comment-124</link>
		<dc:creator>Thijs</dc:creator>
		<pubDate>Tue, 20 Jul 2010 15:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dpdk.nl/opensource/?p=477#comment-124</guid>
		<description>I think the name "Loader" is confusing, since Flash already has a "Loader" class.</description>
		<content:encoded><![CDATA[<p>I think the name &#8220;Loader&#8221; is confusing, since Flash already has a &#8220;Loader&#8221; class.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

