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
Will react hooks replace redux?
Why do we show php code in browser?
What is interface? Why it is used?
What is the function mysql_pconnect() useful for?
How check variable is set or not in php?
Which is not a file-related function in php?
What is a class in php programing?
How to protect special characters in query string?
What is null value in php?
What is the role of the .htaccess file in php?
Is laravel frontend or backend?
Tell me when a conditional statement is ended with an endif?
Code to open file download dialog in PHP?
How I can control asset documents without GR/IR?
What percentage of websites use php?