Windows - 在哪里找到 .bashrc 文件以增加堆大小

Windows - Where to locate .bashrc file to increase heap size

实际上我正在开发 grails 应用程序,运行 很顺利,但过了一段时间后它抛出 exception: java.lang.OutOfMemoryError: Java heap space 为此我收到了一些解决方案,例如

  1. 正在添加环境。变量GRAILS_OPTS = -server -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m偶试过GRAILS_OPTS = -Xms512m -Xmx1024m

  2. 添加变量 JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=96m 到 startGrails.bat 文件

  3. 正在 .bashrc 文件中添加 export GRAILS_OPTS="-Xms1g -Xmx1g -server" 谁能告诉我这个文件在哪里。

选项 1 和 2 不走运。

使用 Windows 10

bash man page:

When an interactive shell that is not a login shell is started, bash reads and executes commands from ~/.bashrc, if that file exists. This may be inhibited by using the --norc option. The --rcfile file option will force bash to read and execute commands from file instead of ~/.bashrc.

它是一个隐藏文件(注意点是第一个字符)所以请使用以下命令在终端中打开它(如果您使用的是 gedit ofc): sudo gedit ~/.bashrc

更新: 然而,在再次阅读你的问题后,我认为你正在研究 Windows 并且你的选项 3 是 linux 替代# 1.不是吗?