idea cpu 占用高 indexing 索引慢优化
作者:互联网
该文章会一直同步更新,不妨关注一下
步骤 1:使用 idea 自带 maven,setting 自己设置就好 注意 maven 配置是当前项目还是全局!!! 设置多线程 下面可以和我看下有哪些配置项不一致看情况修改
-DarchetypeCatalog=local
步骤 2:
步骤 3:定制 jvm 参数
# IDEA vmoptions , by zhengkai.blog.csdn.net
# 堆栈设置
-Xms4G
-Xmx4G
-XX:MetaspaceSize=1G
-XX:MaxMetaspaceSize=1G
-XX:+AlwaysPreTouch
-XX:InitialCodeCacheSize=1G
-XX:ReservedCodeCacheSize=1G
# GC参数
-XX:ParallelGCThreads=4
# JIT参数
-XX:+TieredCompilation
-XX:CICompilerCount=4
-XX:TieredStopAtLevel=1
-XX:MaxInlineLevel=3
-XX:Tier4MinInvocationThreshold=100000
-XX:Tier4InvocationThreshold=110000
-XX:Tier4CompileThreshold=120000
-Djava.net.preferIPv4Stack=true
-Djdk.attach.allowAttachSelf
#Error and Dump
# 关闭启动图片
-Dnosplash=true
步骤 4:设置 ignore,如 node_modules,target(看自己需要)等
步骤 5:关闭不必要的插件 步骤 6:使用本地缓存
步骤 7:清缓存重启 idea
注意:不要随意 command+q 杀死 idea,通过正常关闭 idea 方式重启后不用重新建索引
标签:设置,步骤,indexing,idea,XX,1G,net,cpu 来源: https://www.cnblogs.com/hhls1021/p/idea-cpu-zhan-yong-gao-indexing-suo-yin-man-you-hu.html