Instead of:
> java -Xmx256M ...
We can:
> set JAVA_TOOL_OPTIONS=-Xmx256M
> java ...
JAVA_TOOL_OPTIONS may not work with jvm.dll. For that we can try _JAVA_OPTIONS. e.g.
> set _JAVA_OPTIONS=-Xmx256M
... and Thoughts
Instead of:
> java -Xmx256M ...
We can:
> set JAVA_TOOL_OPTIONS=-Xmx256M
> java ...
JAVA_TOOL_OPTIONS may not work with jvm.dll. For that we can try _JAVA_OPTIONS. e.g.
> set _JAVA_OPTIONS=-Xmx256M
No comments:
Post a Comment