Jump to content

Memory not being cleared correctly


jasper078

Recommended Posts

private int[][][] test;

    @Override
    public void onStart() {
        test = new int[7000][7000][5];
        for (int x = 0; x < test.length; x++) {
            for (int y = 0; y < test[x].length; y++) {
                for (int z = 0; z < test[x][y].length; z++) {
                    test[x][y][z] = 128;
                }
            }
        }

        test = null;
        System.gc();
    }

Put this in your script and it will use about 3 gigs of ram. Dereferencing and forcing gc won't clean up the memory and it will stay in memory even after the script is stopped. Is this a known issue with osbot?

Link to comment
Share on other sites

  • Alek locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...