Answer Posted / priti
Yes you can tell Mysql to cache the query and not to cache
the query with following options
SQL_CACHE
SQL_NO_CACHE
SELECT SQL_CACHE id, name FROM your_table_name; //This will
get cached
SELECT SQL_NO_CACHE id, name FROM your_table_name; //This
will not get cached
(Related cache setting should also be effective for
SQL_CACHE).
Thanks
visit my profile and get helped on PHP and other issues on
http://pritisolanki.blogspot.com
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the differences between echo and print?
Which software is used to run php programs?
What is the difference between file_get_contents() and file_put_contents() in php?
What is the difference between apache and tomcat?
Why do you need php?
What is the differences between $a != $B and $a !== $B?
Why constructor is not overridden?
Which is better mysql or sql?
What is baseurl?
What is the meaning of die in php?
What is the difference between $message and $$message in php?
Tell me how can we pass the variable through the navigation between the pages?
Which function is used to read a file removing the html and php tags in it upwork?
Write down the code for save an uploaded file using php?
Which function would you use to replace a record in a database in php?