Increasing (or decreasing) the memory available to R processes

后端 未结 6 1232
你的背包
你的背包 2020-11-22 12:52

I would like to increase (or decrease) the amount of memory available to R. What are the methods for achieving this?

6条回答
  •  眼角桃花
    2020-11-22 13:51

    Microsoft Windows accepts any memory request from processes if it could be done.

    There is no limit for the memory that can be provided to a process, except the Virtual Memory Size.

    Virtual Memory Size is 4GB in 32bit systems for any processes, no matter how many applications you are running. Any processes can allocate up to 4GB memory in 32bit systems.

    In practice, Windows automatically allocates some parts of allocated memory from RAM or page-file depending on processes requests and paging file mechanism.

    But another limit is the size of paging file. If you have a small paging-file, you cannot allocated large memories. You could increase the size of paging file according to Microsoft to have more memory space.

提交回复
热议问题