PHP Classes

Some feedback

Recommend this page to a friend!

      RS Cache  >  All threads  >  Some feedback  >  (Un) Subscribe thread alerts  
Subject:Some feedback
Summary:Fast, easy, efficient but how to handle updates ?
Messages:2
Author:olivier percebois
Date:2005-10-10 17:21:24
Update:2013-12-19 21:46:13
 

  1. Some feedback   Reply   Report abuse  
Picture of olivier percebois olivier percebois - 2005-10-10 17:21:24
Hi,

I tested your class and found it simple to use and very efficient on my script wich is relying on recursive queries. However, I think one important feature is missing : refreshing the cache on update...

cheers

olivier

  2. Re: Some feedback   Reply   Report abuse  
Picture of Tejas Soni Tejas Soni - 2013-12-19 21:46:13 - In reply to message 1 from olivier percebois
hello how to use it on mysql query ??


my mysql code is


echo "<h2>Latest Updates</h2>";


$sql = mysql_query("SELECT * FROM new ORDER BY date DESC LIMIT 9");
while($list = mysql_fetch_array($sql))
{
echo "<div class=\"updateRow\">$list[1]</div>";
}


now how to use mysql query cache on this example code ??


plz sir help me