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
Where to put php files in apache server?
How check field is empty or not in php?
What is the use of offset in mysql?
Does php 7 support multiple inheritance?
How to display your correct URL of the current web page?
What is the difference between substr() and strstr()?
How do functions work?
Is php dying 2018?
Are php short tags acceptable to use?
Which is not a php magic constant?
Explain scalar type declarations in php7?
Which is useful for method overloading?
Explain how can we increase the execution time of a php script?
How many open modes available when a file open in PHP?
Explain what is the function file_get_contents() usefull for?