InterviewSolution
Saved Bookmarks
| 1. |
Which system variable controls the size of the table cache?(a) table_cache(b) cache_table(c) open_cache(d) cache_open |
|
Answer» Right option is (a) table_cache The best I can explain: In MySQL, when the server opens table files it keeps them open to minimize the number of file-opening operations. It maintains information about open files in the table cache. |
|