Hi
10 and competitors+1
At query cache plugin with statistcs what i compute is time between one hit and other hit at the same query (the period)
If the period is lower than query execution time the hit is considered as low (query cache speedup query) but if period is higher we could have two others types of hit
One hit very strange(outlier) and a interesting hit (high), it's interesting cause we avoid disk i/o, and i consider hit as 'high' when period is higher than query expend time, and lower than 1 seconds (maybe could use slow query time) and 10 times the query time, check that 10 is a constant, i'm considering include the competitors column to check if the 10 number is something related to the number of queries running at the same time of query insert, why?
When we insert the query expend time could be (that i want check) proporcional to numbers of concurrent query cache inserts, if it's we have a better high period definition instead of a fixed number
About the global status that's insteresting to check about refuse indormation, if we have a very high qps trying to insert at query cache, or if we have a very bad hit rate or low memory
The refused without information about why it was refused could be interpreted as bad queries inside cache and/or many concurrent threads running the same query, that's what i'm trying to separe, cause comcurrent thread with aame query is common with a query that could return faster with query cache result (low period) but should not occur (or maybe less) with a high/outlier period query
what do you mean?