<br>Why is everyone using memcache for the SQL query as a key?&nbsp; That is what the query cache on your database is for.&nbsp; You gain very little doing it this way, except now you have to manage the invalidation yourself, which the query-cache does for you.
<br><br>Anyway, you can set your keys with an expiry so that they dissapear after a certain time and can be regenerated.&nbsp; Each site is different, but for any kind of data that could change, and you dont have an easy way of identifying the affected keys when it does change, then you should give it an expiry time.&nbsp; That way, eventually, changes will be replicated thru the cache as the keys expire and regenerate.
<br><br>Namespaces probably isnt what you are looking for.&nbsp; It merely adds a string to the begining of the key.&nbsp; Useful if you are using the same memcache cluster for multiple applications, but thats about it.&nbsp; If you normally use a key of &quot;Article:id=5&quot;, but use a namespace of &quot;Supersite-&quot; then internally your key will now be &quot;Supersite-Article:id=5&quot;.
<br><br>I use namespaces for my sitelogging (web instances write logging info to cache using incremented keys, external process pulls those log entries out of cache and puts them in a file).&nbsp; I have multiple sites use the same memcache cluster, and the same piece of code, but the sites logs are kept seperate, and copied out to different files, because when the different sites (and external processing script) connect to the cache, they use different namespaces.
<br><br><div><span class="gmail_quote">On 8/3/07, <b class="gmail_sendername">Jarom Severson</b> &lt;<a href="mailto:j.severson@yahoo.com">j.severson@yahoo.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;">
My main confusion or concern with memcache is how to<br>go about deleting a given set of keys in the<br>cache. For instance, we probably have 10-15 pages on<br>our site that hit the &quot;articles&quot; tables in our<br>database. So, that right there would be 10-15 unique
<br>key/value pairs in memcache, assuming I store the<br>query as the key, and the result set as the value. Now<br>add on dynamic search strings, pagination, etc, and<br>you&#39;ve probably got 100 unique key/value pairs in
<br>memcache, all pertaining to articles.<br><br>So my question is, if we want to make sure our site is<br>never stale, then we need to invalidate all 100 of<br>those keys if someone inserts a new article. Now I&#39;m<br>
thinking I need to do a search in my keys to find all<br>article related keys and invalidate them.<br><br>Is the best way to do this then to store ANOTHER key<br>value pair which essentially stores all the article<br>related keys as its value? So that I can quickly and
<br>easily invalidate the 100 other keys?<br><br>It seems like this might be what &quot;namespaces&quot; are for,<br>but I can&#39;t understand the example given on the<br>memcached FAG page.<br><br>Any help and direction in this area would be much
<br>appreciated, or any other good articles I should read<br>that talk about best practices, implementation<br>techniques, etc.<br><br>thanks in advance.<br><br>Jay<br><br></blockquote></div><br><br clear="all"><br>-- <br>
&quot;Be excellent to each other&quot;