You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 9, 2019. It is now read-only.
Create new project with one Main.java class with following code:
package fr.delthas.skype;
public class Main {
public static void main(String[] args) throws Exception {
Skype skype = new Skype("username", "password");
skype.connect();
System.out.println("Done");
}
}
Run project and see memory usage using system monitor.
For example, I cannot even run this app on my VDS because of Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
Expected behaviour
Running app should use less than 32mb RAM.
Actual behaviour
Running app eats about 400mb RAM.
Steps to reproduce the issue
Create new project with one Main.java class with following code:
Run project and see memory usage using system monitor.
For example, I cannot even run this app on my VDS because of
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space