IntelliJ IDEA,WebStorm,PyCharm 2017+缓存位置修改

注:此方法适用于JetBrains的系列产品,包括IntelliJ IDEA,WebStrom,PyCharm等。

(1)打开安装路径下的属性文件

  D:\Developtool\IntelliJ_IDEA_2016\bin\idea.properties

(2)修改属性配置

  用notepad++等文本编辑器修改idea.properties文件,找到配置信息中有${user.home}的字段,如idea.config.path,idea.system.path:

  1 # Use ${idea.home.path} macro to specify location relative to IDE installation home.
  2 # Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value.
  3 # Note for Windows users: please make sure you‘re using forward slashes (e.g. c:/idea/system).
  4
  5 #---------------------------------------------------------------------
  6 # Uncomment this option if you want to customize path to IDE config folder. Make sure you‘re using forward slashes.
  7 #---------------------------------------------------------------------
  8 # idea.config.path=${user.home}/.IntelliJIdea/config
  9 idea.config.path=E:/Personal/.IntelliJIdea/config
 10
 11 #---------------------------------------------------------------------
 12 # Uncomment this option if you want to customize path to IDE system folder. Make sure you‘re using forward slashes.
 13 #---------------------------------------------------------------------
 14 # idea.system.path=${user.home}/.IntelliJIdea/system
 15 idea.system.path=E:/Personal/.IntelliJIdea/system
 16
 17 #---------------------------------------------------------------------
 18 # Uncomment this option if you want to customize path to user installed plugins folder. Make sure you‘re using forward slashes.
 19 #---------------------------------------------------------------------
 20 # idea.plugins.path=${idea.config.path}/plugins
 21 idea.plugins.path=${idea.config.path}/plugins
 22
 23 #---------------------------------------------------------------------
 24 # Uncomment this option if you want to customize path to IDE logs folder. Make sure you‘re using forward slashes.
 25 #---------------------------------------------------------------------
 26 # idea.log.path=${idea.system.path}/log
 27 idea.log.path=${idea.system.path}/log
 28
 29 #---------------------------------------------------------------------
 30 # Maximum file size (kilobytes) IDE should provide code assistance for.
 31 # The larger file is the slower its editor works and higher overall system memory requirements are
 32 # if code assistance is enabled. Remove this property or set to very large number if you need
 33 # code assistance for any files available regardless their size.
 34 #---------------------------------------------------------------------
 35 idea.max.intellisense.filesize=2500
 36
 37 #---------------------------------------------------------------------
 38 # This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
 39 # Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
 40 #---------------------------------------------------------------------
 41 idea.cycle.buffer.size=1024
 42
 43 #---------------------------------------------------------------------
 44 # Configure if a special launcher should be used when running processes from within IDE.
 45 # Using Launcher enables "soft exit" and "thread dump" features
 46 #---------------------------------------------------------------------
 47 idea.no.launcher=false
 48
 49 #---------------------------------------------------------------------
 50 # To avoid too long classpath
 51 #---------------------------------------------------------------------
 52 idea.dynamic.classpath=false
 53
 54 #---------------------------------------------------------------------
 55 # Uncomment this property to prevent IDE from throwing ProcessCanceledException when user activity
 56 # detected. This option is only useful for plugin developers, while debugging PSI related activities
 57 # performed in background error analysis thread.
 58 # DO NOT UNCOMMENT THIS UNLESS YOU‘RE DEBUGGING IDE ITSELF. Significant slowdowns and lockups will happen otherwise.
 59 #---------------------------------------------------------------------
 60 #idea.ProcessCanceledException=disabled
 61
 62 #---------------------------------------------------------------------
 63 # There are two possible values of idea.popup.weight property: "heavy" and "medium".
 64 # If you have WM configured as "Focus follows mouse with Auto Raise" then you have to
 65 # set this property to "medium". It prevents problems with popup menus on some
 66 # configurations.
 67 #---------------------------------------------------------------------
 68 idea.popup.weight=heavy
 69
 70 #---------------------------------------------------------------------
 71 # Use default anti-aliasing in system, i.e. override value of "Settings|Editor|Appearance|Use anti-aliased font"
 72 # option. May be useful when using Windows Remote Desktop Connection for instance.
 73 #---------------------------------------------------------------------
 74 idea.use.default.antialiasing.in.editor=false
 75
 76 #---------------------------------------------------------------------
 77 # Disabling this property may lead to visual glitches like blinking and fail to repaint
 78 # on certain display adapter cards.
 79 #---------------------------------------------------------------------
 80 sun.java2d.noddraw=true
 81
 82 #---------------------------------------------------------------------
 83 # Removing this property may lead to editor performance degradation under Windows.
 84 #---------------------------------------------------------------------
 85 sun.java2d.d3d=false
 86
 87 #---------------------------------------------------------------------
 88 # Workaround for slow scrolling in JDK6
 89 #---------------------------------------------------------------------
 90 swing.bufferPerWindow=false
 91
 92 #---------------------------------------------------------------------
 93 # Removing this property may lead to editor performance degradation under X Window.
 94 #---------------------------------------------------------------------
 95 sun.java2d.pmoffscreen=false
 96
 97 #---------------------------------------------------------------------
 98 # Workaround to avoid long hangs while accessing clipboard under Mac OS X.
 99 #---------------------------------------------------------------------
100 #ide.mac.useNativeClipboard=True
101
102 #---------------------------------------------------------------------
103 # Maximum size (kilobytes) IDEA will load for showing past file contents -
104 # in Show Diff or when calculating Digest Diff
105 #---------------------------------------------------------------------
106 #idea.max.vcs.loaded.size.kb=20480
107
108 #---------------------------------------------------------------------
109 # IDEA file chooser peeks inside directories to detect whether they contain a valid project
110 # (to mark such directories with a corresponding icon).
111 # Uncommenting the option prevents this behavior outside of user home directory.
112 #---------------------------------------------------------------------
113 #idea.chooser.lookup.for.project.dirs=false
114
115 #---------------------------------------------------------------------
116 # IDEA can copy library .jar files to prevent their locking.
117 # By default this behavior is enabled on Windows and disabled on other platforms.
118 # Uncomment this property to override.
119 #---------------------------------------------------------------------
120 # idea.jars.nocopy=false
121
122 #---------------------------------------------------------------------
123 # The VM option value to be used to start a JVM in debug mode.
124 # Some JREs define it in a different way (-XXdebug in Oracle VM)
125 #---------------------------------------------------------------------
126 idea.xdebug.key=-Xdebug
127
128 #---------------------------------------------------------------------
129 # Switch into JMX 1.0 compatibility mode.
130 # Uncomment this option to be able to run IDEA using J2SDK 1.5+ while working
131 # with application servers (like WebLogic) running 1.4.
132 #---------------------------------------------------------------------
133 #jmx.serial.form=1.0
134
135 #-----------------------------------------------------------------------
136 # Change to ‘enabled‘ if you want to receive instant visual notifications
137 # about fatal errors that happen to an IDE or plugins installed.
138 #-----------------------------------------------------------------------
139 idea.fatal.error.notification=disabled

(3)重启IDE,如果指定目录下生成.IntelliJIdea文件夹,则说明修改成功。

原文地址:https://www.cnblogs.com/yuzd/p/8975830.html

时间: 2024-08-30 07:38:24

IntelliJ IDEA,WebStorm,PyCharm 2017+缓存位置修改的相关文章

GoogleChrome更改缓存位置

CreateTime--2017年7月20日08:33:14Author:Marydon 更改chrome浏览器缓存位置 参考链接:http://jingyan.baidu.com/article/3c343ff72345c20d3679635e.html 1.chrome默认缓存位置 C:\Users\Administrator\AppData\Local\Google\Chrome\User Data\Default\Cache 2.删除该Cache文件夹 如不能删除,关闭chrome浏览器

arcgis server缓存路径修改

转自蓝紫原文 arcgis server缓存路径修改 由于空间不够用,需要更换瓦片的输出路径,具体的修改方法如下: 1.打开ArcCatalog,打开GIS服务器,找到已经添加的gis服务器,一般都是机器名,如下所示,右键我的gis服务器(admin-think),选中服务器属性. 2.打开服务器属性对话框,如下所示,选择目录类型,如果要修改缓存目录,则目录类型选择缓存目录,然后添加其路径. 3.在gis服务器下找到要修改的服务,如我要修改road服务缓存路径,则右键改服务,停止服务,然后选择服

Unity3D杂烩:位置修改,子对象获取,组件获取,通过脚本文件获取被绑定对象

//位置修改 player.transform.position = new Vector3( Camera.main.transform.position.x, Camera.main.transform.position.y+3);  player.GetComponent<Rigidbody2D> ().velocity = new Vector2 (0,0);  player.transform.localRotation = Quaternion.Euler(0,0,0); //对象

PyCharm 2017 Mac 免注册版破解安装说明

PyCharm 2017 Mac 免注册版破解安装说明 下载完成安装包后,双击打开,将左侧拖拽至右侧应用程序,默认安装. 打开软件,在License server address中填入[http://xidea.online],然后点击Activate即可顺利破解! btw: 我用的是Mac本,下载的官网最新版本的professional2017.2版本,亲测上述方式可用,Windows版的也可以使用上述方式.

一秒教会你破解企业微信虚拟定位位置修改 让你在哪都可以打卡上下班

一秒教会你破解企业微信虚拟定位位置修改  让你在哪都可以打卡上下班 一秒教会你破解企业微信虚拟定位位置修改  让你在哪都可以打卡上下班 一秒教会你破解企业微信虚拟定位位置修改  让你在哪都可以打卡上下班 企业微信除了具有类似微信的聊天功能,另外添加了公费电话和邮件功能.腾讯方面表示,企业微信将免费使用.在OA功能方面,结合了公告.考勤.请假.报销.此外,企业微信添加了如回执消息.休息一下等办公场景功能.企业微信原来是想成为企业内部通信工具,对标钉钉,然而现在很多企业还是在用微信做内部沟通.这一次

缓存---缓存位置

3.缓存位置 浏览器 ??当HTTP响应允许进行缓存时,浏览器会将HTML,CSS,JAVAScript,图片等静态资源进行缓存. ISP ??网络服务提供商(ISP)是网络访问的第一跳,通过将数据缓存在ISP中能够大大提高用户的访问速度. 反向代理 ??反向代理位于服务器之前,请求与响应都要经过反向代理.通过将数据缓存在反向代理,在用户请求反向代理时就可以直接使用缓存进行响应. 本地缓存 ??使用Guava Cache将数据缓存在服务器本地内存中,服务器代码可以直接读取本地内存中的缓存,速度非

[至逝去的一年]修改IntelliJ IDEA修改系统缓存目录,修改sbt的.sbt和.ivy2

前言 博主属外包,因公司原因到另一个互联网电商公司上班一年多,辗转而回.电商公司架构是python-django写的,随着业务发展,改成scala-自己改造play框架.工具由PyCharm,升级IntelliJ IDEA.期间博主电脑系统盘升级固态硬盘,而.sbt和.ivy2默认都在c盘用户目录,而两个文件夹文件巨大,不停写入c盘.博主穷逼心疼固态盘,然后就想改变默认路径.搜索试错很多次,终于成功.想到其他人也有可能遇到同样的问题,希望这篇文章可以帮到,故记之. 正文博主 win7 64位,I

Win7 Chrome的缓存及用户数据位置修改

查阅多处资料后,自己总结并整理了2种方法:使用命令参数.使用mklink命令创建符号链接.建议直接使用第2种方式. 首先找到数据位置并分清楚目录的作用: C:\Users\XXX\AppData\Local\Google\Chrome\UserData    用户数据(这个目录在默认情况下包含了缓存,里面还包括各种配置信息,以及书签.扩展等内容) C:\Users\XXX\AppData\Local\Google\Chrome\UserData\Default\Cache   缓存 方案一: 这

IntelliJ IDEA 14 缓存文件目录修改

之前使用idea13,使用过程中发现C盘的缓存文件不断的增大,加之最近13突然出现问题,于是果断卸载重装个14,装上之后更改缓存目录,以免再次占用系统盘空间. 更改缓存目录需要修改配置文件.IntelliJ IDEA 14.0.1\bin\idea.properties #--------------------------------------------------------------------- # Uncomment this option if you want to cust