<?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: Speed up the publish time of your store</title>
	<atom:link href="http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/</link>
	<description>Tips, Tricks, and Best Practices</description>
	<lastBuildDate>Mon, 23 Jan 2012 15:16:27 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Albert</title>
		<link>http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/comment-page-1/#comment-102396</link>
		<dc:creator>Albert</dc:creator>
		<pubDate>Sat, 28 Jun 2008 04:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/#comment-102396</guid>
		<description>Just an observation of my own,
 I have two stores with about 800 pruduct pages each.  Each product has from 5 to 15 colors. I have seperate image for each color so the customer can view it in the color of choice.


With all my product images loaded in a subdirectory in the web hosting side. publishing takes less than 3 min.

with all the images loaded in the &quot;Files&quot; directory on store manager side, publishing takes over half an hour.

I would recommend keeping your &quot;Files&quot; directory in store editor as small as possible and utilize the web hosting side as much as possible.

That should reduce your publishing time since it does not republish whats in the webhosting side.</description>
		<content:encoded><![CDATA[<p>Just an observation of my own,<br />
 I have two stores with about 800 pruduct pages each.  Each product has from 5 to 15 colors. I have seperate image for each color so the customer can view it in the color of choice.</p>
<p>With all my product images loaded in a subdirectory in the web hosting side. publishing takes less than 3 min.</p>
<p>with all the images loaded in the &#8220;Files&#8221; directory on store manager side, publishing takes over half an hour.</p>
<p>I would recommend keeping your &#8220;Files&#8221; directory in store editor as small as possible and utilize the web hosting side as much as possible.</p>
<p>That should reduce your publishing time since it does not republish whats in the webhosting side.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Swartwood</title>
		<link>http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/comment-page-1/#comment-102395</link>
		<dc:creator>Jacob Swartwood</dc:creator>
		<pubDate>Fri, 26 Oct 2007 16:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/#comment-102395</guid>
		<description>Grr... scratch that. Using ONCE :page inside a FOR-EACH-OBJECT definitely doesn&#039;t work the way I thought. I&#039;ll pollute this thread again if I figure anything else out.</description>
		<content:encoded><![CDATA[<p>Grr&#8230; scratch that. Using ONCE :page inside a FOR-EACH-OBJECT definitely doesn&#8217;t work the way I thought. I&#8217;ll pollute this thread again if I figure anything else out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Swartwood</title>
		<link>http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/comment-page-1/#comment-102394</link>
		<dc:creator>Jacob Swartwood</dc:creator>
		<pubDate>Thu, 25 Oct 2007 22:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/#comment-102394</guid>
		<description>Sorry, that example code didn&#039;t tab appropriately. Pretend each line is indented relative to the previous line.</description>
		<content:encoded><![CDATA[<p>Sorry, that example code didn&#8217;t tab appropriately. Pretend each line is indented relative to the previous line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Swartwood</title>
		<link>http://www.ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/comment-page-1/#comment-102393</link>
		<dc:creator>Jacob Swartwood</dc:creator>
		<pubDate>Thu, 25 Oct 2007 22:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://ystoreblog.com/blog/2007/10/speed-up-the-publish-time-of-your-store/#comment-102393</guid>
		<description>Ivan,
ONCE :page is great too (if not better than ONCE :publish.) It may actually save you from your editor being slow in addition to faster publish times. Rather than use a &quot;trick&quot; to do your nav once per publish, you could theoretically do it once (actually just once.) Also, with this method, you shouldn&#039;t even need to check whether or not you are in the editor to hide your nav. Try this and see what you think...

&lt;code&gt;
WITH-OBJECT :index
  ONCE :page
    ...
&lt;/code&gt;

I&#039;m not positive, but it would seem that with the object &quot;index&quot; it is only generating the code that would follow once. Since there is only one page &quot;index&quot; in the store, it will only generate that nav once. On the same note... it would seem that you could use ONCE :page inside a FOR-EACH-OBJECT loop so that you wouldn&#039;t have to run any code in the body of the loop for any object twice (if that makes sense.)

Since I have not contact with anyone at Yahoo!, I have no idea how this actually works or if it is doing exactly what I think it is. It does appear to work though.
- Jacob Swartwood</description>
		<content:encoded><![CDATA[<p>Ivan,<br />
ONCE :page is great too (if not better than ONCE :publish.) It may actually save you from your editor being slow in addition to faster publish times. Rather than use a &#8220;trick&#8221; to do your nav once per publish, you could theoretically do it once (actually just once.) Also, with this method, you shouldn&#8217;t even need to check whether or not you are in the editor to hide your nav. Try this and see what you think&#8230;</p>
<p><code><br />
WITH-OBJECT :index<br />
  ONCE :page<br />
    ...<br />
</code></p>
<p>I&#8217;m not positive, but it would seem that with the object &#8220;index&#8221; it is only generating the code that would follow once. Since there is only one page &#8220;index&#8221; in the store, it will only generate that nav once. On the same note&#8230; it would seem that you could use ONCE :page inside a FOR-EACH-OBJECT loop so that you wouldn&#8217;t have to run any code in the body of the loop for any object twice (if that makes sense.)</p>
<p>Since I have not contact with anyone at Yahoo!, I have no idea how this actually works or if it is doing exactly what I think it is. It does appear to work though.<br />
- Jacob Swartwood</p>
]]></content:encoded>
	</item>
</channel>
</rss>

