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
How many escape sequences are recognized in double-quoted strings in php?
What are the two types of variables?
What is super keyword in php?
How does php serialize work?
What is the difference between explode () and split () functions in php?
What is serialization in php?
What is urlencode and urldecode in php?
What is difference between echo and print in php?
Why json is used in php?
How to run a php script?
How long is csrf token?
Why do we use hooks?
What is the use of ajax in php?
What is a php namespace?
Explain me what is the difference between $_files['userfile']['name'] and $_files['userfile']['tmp_name']?