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
Php says that an array is an ordered map. But how the values are ordered in an array?
What is binary safe string?
What is php and sql used for?
Write a query to find the 2nd highest salary of an employee from the employee table?
What is the use of pear in php?
What is the difference between fopen() and fclose()?
How is php different from other languages?
What are the functions used in php?
Tell me what's the difference between include and require?
How do you call a constructor for a parent class?
What is strstr php?
Is php a case sensitive language?
What is default session time in php?
What is symfony php?
What is the difference between get and post in php?