Riguz留言 | 贡献
创建页面,内容为“ Category:Concurrent
 
Riguz留言 | 贡献
无编辑摘要
 
第1行: 第1行:


creating a thread takes a few milliseconds, and a new thread eats about 1MB of memory.<ref>https://vertx.io/docs/intro-to-reactive/</ref>


[[Category:Concurrent]]
In the Java Virtual Machine (JVM), each thread is allocated a private stack to store method call information, local variables, and intermediate results. The default stack size is determined by the operating system and architecture. For most modern systems, the default stack size is typically 1 MB. For example:
 
Linux/x86 (64-bit): 1 MB
 
macOS (64-bit): 1 MB
 
Windows: Uses the system-wide stack size.
 
You can modify the stack size using the -Xss flag. For instance, to set the stack size to 1 MB, you can use:
 
java -Xss1m
 
[[Category:Concurrency]]

2025年7月29日 (二) 01:27的最新版本

creating a thread takes a few milliseconds, and a new thread eats about 1MB of memory.[1]

In the Java Virtual Machine (JVM), each thread is allocated a private stack to store method call information, local variables, and intermediate results. The default stack size is determined by the operating system and architecture. For most modern systems, the default stack size is typically 1 MB. For example:

Linux/x86 (64-bit): 1 MB

macOS (64-bit): 1 MB

Windows: Uses the system-wide stack size.

You can modify the stack size using the -Xss flag. For instance, to set the stack size to 1 MB, you can use:

java -Xss1m