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 is the meaning of symbol '$' in jquery?
Explain how is it possible to set an infinite execution time for php script?
What are the three parts of an http request?
What is api used for?
How can we check the value of a given variable is a number?
Explain some of the php array functions?
What is php used for?
Which function can be used to exit from the script after displaying the error message?
Explain a resource?
What is cURL in PHP?
What is php artisan tinker?
Tell us how can we display the output directly to the browser?
Why php is used with mysql?
What is use of isset function in php?
What is exception handling in php?