1.mq消息重复消费
2.mq消息堆积
3.如何实现消费的幂等性(网站付款成功发货,使用mq做异步通知发货)
4.log,debug,warn,error怎么用
5.java基础
6.效率问题
ArrayList a,b;HashSet c,d ;a,b,c,d各自有100w元素。
a.contain(b);c.contian(d);
时间差多少
7.索引问题
1.user age varchar
select * from user where age =1 走不走索引
2.select * from user where id = 1走不走索引
3.select * from user where id in ( 1,2 )走不走索引
4.select * from user where id in ( 1,200 )走不走索引