美团Java一面凉经
- 项目
- 实习
- 手撕:层序遍历
- 数据库事务隔离级别,MVCC
- RC隔离级别是怎么解决脏读的?
- 覆盖索引
- 联合索引(a, b, c),where a = 1 and c = 3,where b = 2 and c = 3 and a = 1这俩走索引吗?
- 索引失效
- SQL:
create table student ( id int auto_increment primary key, name varchar(32) null ); create table score ( id int auto_increment primary key, student_id int not null, class_id int not null, score int not null ); 求每个学生选修的课程数和平均分,输出为 student_id, name, class_count, average_score
- 场景题:假设我现在项目需要去设计一份缓存,它需要去冗余MySQL中的数据,那这个缓存设计的过程中需要去考虑些什么
- 先删MySQL再删缓存,如果删完缓存有大量击穿流量来了怎么处理?
- CopyOnWrite、ArrayList底层
- CAS
- volatile
- 线程池参数和工作流程
- 分布式事务
- 反问
总结:美团到店商品平台,面试官有气无力的,全程时长70min,感觉答得挺好的,今天直接感谢信了,美团是不是hc全给实习生了啊,暑期实习秋招全是一面挂。这辈子和开水团无缘了。
#美团##秋招##2024届秋招#