<?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: The maximum of Sitecore items? At least a million!</title>
	<atom:link href="http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/feed/" rel="self" type="application/rss+xml" />
	<link>http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/</link>
	<description>All about the web, online marketing, Sitecore, .NET and building sites...</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:09:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sasha</title>
		<link>http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/comment-page-1/#comment-273822</link>
		<dc:creator>Sasha</dc:creator>
		<pubDate>Mon, 18 Jul 2011 20:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/#comment-273822</guid>
		<description>P.S. Oops... got filtered out... as for #1: &quot;Query.MaxItems&quot;
Search for that in web.config

Sasha</description>
		<content:encoded><![CDATA[<p>P.S. Oops&#8230; got filtered out&#8230; as for #1: &#8220;Query.MaxItems&#8221;<br />
Search for that in web.config</p>
<p>Sasha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sasha</title>
		<link>http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/comment-page-1/#comment-273821</link>
		<dc:creator>Sasha</dc:creator>
		<pubDate>Mon, 18 Jul 2011 20:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/#comment-273821</guid>
		<description>Hi Another Sitecore Developer.

1) Number of items in a query limitation: check your web.config setting:

			&lt;!--  Query.MaxItems
            Specifies the max number of items in a query result set.
            This also controls the number of items in Lookup, Multilink and Valuelookup fields.
      --&gt;
			

2) As of the query you are using, I don&#039;t think that Sitecore recommends using such a reference as &quot;descendant::*&quot;

http://sitecorejohn.wordpress.com/2010/01/11/sitecore-best-practices-presentation-coding-and-configuration/

Make use of Caching.

I hope it helps!
Sasha</description>
		<content:encoded><![CDATA[<p>Hi Another Sitecore Developer.</p>
<p>1) Number of items in a query limitation: check your web.config setting:</p>
<p>			<!--  Query.MaxItems<br />
            Specifies the max number of items in a query result set.<br />
            This also controls the number of items in Lookup, Multilink and Valuelookup fields.<br />
      --></p>
<p>2) As of the query you are using, I don&#8217;t think that Sitecore recommends using such a reference as &#8220;descendant::*&#8221;</p>
<p><a href="http://sitecorejohn.wordpress.com/2010/01/11/sitecore-best-practices-presentation-coding-and-configuration/" rel="nofollow">http://sitecorejohn.wordpress.com/2010/01/11/sitecore-best-practices-presentation-coding-and-configuration/</a></p>
<p>Make use of Caching.</p>
<p>I hope it helps!<br />
Sasha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Another Sitecore developer</title>
		<link>http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/comment-page-1/#comment-264622</link>
		<dc:creator>Another Sitecore developer</dc:creator>
		<pubDate>Thu, 09 Jun 2011 18:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/#comment-264622</guid>
		<description>Agree with &quot;Sitecore Developer&quot;. We were 2 working on a company that uses Sitecore for it&#039;s corporate website. The other guy quit 4 months ago, and now i&#039;m leaving too.
Don&#039;t know if we are working with a bad implementation of the CMS or what, but it&#039;s really &quot;heavy&quot; to work with Sitecore.

Right now I&#039;m looking why I cant list more than 100 sub-items on the same page. I&#039;m using axes queries:
Item[] items;
string strQuery = &quot;/sitecore/content/Another Site/descendant::*[@@templatename=&#039;Video Page&#039;]&quot;;
items = Sitecore.Context.Item.Axes.SelectItems(strQuery);

Video Page&#039;s are placed in sub-folders of &quot;Another Site&quot;. Each folder with no more than 10 items.

¿Any clue?</description>
		<content:encoded><![CDATA[<p>Agree with &#8220;Sitecore Developer&#8221;. We were 2 working on a company that uses Sitecore for it&#8217;s corporate website. The other guy quit 4 months ago, and now i&#8217;m leaving too.<br />
Don&#8217;t know if we are working with a bad implementation of the CMS or what, but it&#8217;s really &#8220;heavy&#8221; to work with Sitecore.</p>
<p>Right now I&#8217;m looking why I cant list more than 100 sub-items on the same page. I&#8217;m using axes queries:<br />
Item[] items;<br />
string strQuery = &#8220;/sitecore/content/Another Site/descendant::*[@@templatename='Video Page']&#8220;;<br />
items = Sitecore.Context.Item.Axes.SelectItems(strQuery);</p>
<p>Video Page&#8217;s are placed in sub-folders of &#8220;Another Site&#8221;. Each folder with no more than 10 items.</p>
<p>¿Any clue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sitecore developer</title>
		<link>http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/comment-page-1/#comment-83005</link>
		<dc:creator>Sitecore developer</dc:creator>
		<pubDate>Tue, 20 May 2008 22:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2008/04/22/the-maximum-of-sitecore-items-at-least-a-million/#comment-83005</guid>
		<description>Yes, but in real life you can&#039;t use sitecore with too many items. The more big the solution is the more slow the backend. And if you put some event handlers than you just got an useless sitecore backend where it takes half an hour to publish or 10 minutes to edit an item. Developement is really slow and time consuming with sitecore, and I&#039;ve heard about a lot of developers changing their job because of that..</description>
		<content:encoded><![CDATA[<p>Yes, but in real life you can&#8217;t use sitecore with too many items. The more big the solution is the more slow the backend. And if you put some event handlers than you just got an useless sitecore backend where it takes half an hour to publish or 10 minutes to edit an item. Developement is really slow and time consuming with sitecore, and I&#8217;ve heard about a lot of developers changing their job because of that..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

