环境:linux(Red Hat)下, 16G内存,mysql的版本是5.6;
server服务器和mysql在同一台机器上,mysql大概有1.7G的数据, 同时使用300个线程访问, sql执行超过一秒这个算正常吗(该表有三百多万条记录)?
sql类似于: select a.id, a.name, a.user_id, a. device_id , a.age from table a where a.isDeleted = 0 and a.user_id = 1 and a.device_id = 2;其中user_id和device_id有联合索引;