关闭inspection

可以在配置中复制一个Inspections profile文件,去掉java文件的检查。

在提交代码之间,使用完整的inpsect文件对所有uncommitted的文件检查一次
image.png
image.png
edit: 2021-10-06
这个方法没什么实践性,使用起来非常麻烦。另外虽然关闭inspection后就不卡了,但是写代码容易出现一些低级的错误而没有提示,好在升级idea到最新的2021.1版本后inspection引起的卡顿问题就缓解了很多,所以这个方案还是没有使用,正常开启了inspection

JIT配置

  1. # JIT 参数 https://www.jianshu.com/p/ac72a14afc24
  2. -XX:CICompilerCount=2
  3. -XX:TieredStopAtLevel=1
  4. -XX:MaxInlineLevel=3
  5. -XX:Tier4MinInvocationThreshold=100000
  6. -XX:Tier4InvocationThreshold=110000
  7. -XX:Tier4CompileThreshold=120000