MySQL cache question
#1

I have a question about MySQL cache.
Which is true?

1)
PHP код:
new Cache:result;
result mysql_query(Sql_Tquery); //query 1
//.............
result mysql_query(Sql_Tquery); //query 1
cache_delete(result); 
2)
PHP код:
new Cache:result;
result mysql_query(Sql_Tquery); //query 1
//.............
cache_delete(result);
new 
Cache:result;
result mysql_query(Sql_Tquery); //query 1
cache_delete(result); 
Reply


Messages In This Thread
MySQL cache question - by MRM - 05.07.2018, 19:39
Re: MySQL cache question - by JasonRiggs - 05.07.2018, 21:10
Re: MySQL cache question - by Calisthenics - 05.07.2018, 21:11
Re: MySQL cache question - by MRM - 06.07.2018, 17:19

Forum Jump:


Users browsing this thread: 2 Guest(s)