Android Studio consuming 100% disk

0

My Android Studio will consume 100% of the disk all the time, even when there is no task running in the backgroud, this disk usage makes the whole system very slow. Looking at the Task Manager is not only the Android Studio that is using the disk, sometimes it is the System, sometimes it is the Java, but always when it is open, its I close the Android Studio the use of disk back to normal.

Does anyone else have this problem? Is it normal for Android Studio? Can you solve it?

The version of Android Studio is 2.3 (the problem occurred even in previous versions). Windows 10 64 bit. Core i5-5200U, 4GB ram.

Thank you in advance.

    
asked by anonymous 07.03.2017 / 01:28

2 answers

1

I was able to solve the problem. From what I discovered Android Studio was running low on RAM, I think that's why it used a lot of disk paging, I've changed the settings to increase memory in the Help > Edit Custom VM Options ... . I left like this:

# custom Android Studio VM options, see http://tools.android.com/tech-docs/configuration
-Xms1560m
-Xmx2048m
-XX:MaxPermSize=512m
-XX:ReservedCodeCacheSize=450m

In my case this resolved, disk usage is normal now.

    
11.03.2017 / 15:53
0

You can try "Power Save" option in the File menu.

or

    
07.03.2017 / 02:04