Theoretically, yes.   But you have to figure out the point where its no longer worth it to store things in cache.  If it happens only once every now and then, and its really not that expensive of a database operation, then why bother caching it?
<br><br>In my reality, a request for a list of entries higher than a few hundred would be something that doesnt happen very often, I actually have a limit of 5,000 coded into the routine.&nbsp; Anything over that, comes straight from the database.&nbsp; But since that has never actually happened, I don&#39;t know what is best.&nbsp; Considering that people only see 15 or 10 entries at a time, and the fact that the DESIGN of the system causes the most relevant entries to be at the top of the list it would take people a very long time to get past 10,000 entries.
<br><br>Assuming that it takes them 5 seconds to click thru each set, it would take over 7 hours of constant clicking to get past 5000 entries.<br><br>If my design was different and people DID browse thru older &quot;pages&quot; of entries, then I might use a sliding window instead.&nbsp; So instead of storing the entire list each time, I would only store the subset.&nbsp; For example, store from 0-100, 101-200, 201-300, etc.&nbsp;&nbsp; 
<br><br>In giving my answers to you, I was trying to be generic... my only recommendation is to try different scenarios and see what works best.&nbsp; Do some simple benchmarking.&nbsp;&nbsp; It is ok to go straight to the database sometimes.&nbsp; Keep in mind that I do the lists this way because I&#39;ve done a bit of benchmarking, and looking at the design of the system and how it is used, I see that its the most efficient.&nbsp; A different way might be better for you.
<br><br><div><span class="gmail_quote">On 9/28/07, <b class="gmail_sendername">K J</b> &lt;<a href="mailto:sanbat@gmail.com">sanbat@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
<div><span class="q">
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">Well, not really arrays in memory.&nbsp; Lists in memcache.&nbsp;&nbsp; It works well because 99% of requests will always be within the 100.&nbsp; That is why it exists as apposed to just having a 500,1000,1500, etc.
<br><br>But lets say a user has browsed up to the 800th entry.&nbsp; When getting the key from memcache, it only gets the one (this one is called &quot;Articles:top:limit=1000&quot;).&nbsp; Which contains all the ID&#39;s of the current articles in the order that they would be displayed.&nbsp; I skip the first 800 entries in that list, and display the next 15.&nbsp; The actual contents of the article itself is in another cache entry (&quot;Article:aid=800&quot; for example).&nbsp; Depending on how I was accessing this information, I would produce either xml or html and would generate a key called &quot;xml:Article-list:800-814&quot; or &quot;html:Article-list:800-814&quot;).&nbsp;
</blockquote>
<div>&nbsp;</div></span>
<div>Sorry for digging up this old topic, but I&#39;m still not quite understanding how you are storing the Memcache lists.&nbsp; You said you are storing the first 100 in one list, and the first 500 in another.&nbsp; If someone were to request the 20,000-20,100 entries, what exactly do you do? Do you create a third list that has records 1-20,100?&nbsp; Sorry if I&#39;m a little slow.
</div><br>&nbsp;</div>
</blockquote></div><br><br clear="all"><br>-- <br>&quot;Be excellent to each other&quot;