Today we are pleased to announce the availability of NGINX Open Source 1.15.2. One key feature in this release is the new $ssl_preread_protocol variable, which allow...
--原 select id,name from user limit 500000,10 --优化后: select id,name from user u inner join (select id from user limit 500000,10)as tmp on tmp.id = u.id