multithreading - how much memory a thread takes in java -
how memory foot print normal thread takes in java. assuming there no object associated it.
the amount of memory allocated thread stack specific jvm version + operating system. configured -xx:threadstacksize option (-xss on older versions.) anecdotally 512kb "normal", although 1024 on 64-bit linux platform it's commonly critical (one guy's opinion anyway)
Comments
Post a Comment