Project

General

Profile

Development #321

Updated by Patryk Szymański 6 days ago

lista endpointów ponetcjalnych do opytmalizacji 

 SELECT endpoint,count(*), max(execution_time), AVG(execution_time) FROM `request_log`  
 group by endpoint   
 HAVING count(*)>5 count(*)>10 
 ORDER BY `AVG(execution_time)`    DESC;

Back