In what way does adding extra RAM help PC gaming performance?


Recommended Posts

Even i have similar system with even lesser ram (2GB) , will adding more ram help me to get better FPS in Saints row the third? Or is it the processor which is umm bottle-necking ? Even at lowest settings the game is not playable while i see Youtube videos of people having even worse GPU and yet they manage to play it nice on relatively better settings.

It wouldn't necessarily give you higher FPS but the game would be likely to run more smoothly. I'd guess it's likely to be stuttering that's your issue as your CPU and video card are more than the game's minimum requirements.

I don't know why this needs to be repeated time and time again, but there is no valid reason to disable the paging file. It does not increase performance because Windows only pages stuff when it needs to. Let Windows manage your memory, it wouldn't be designed to write a paging file if it didn't think you needed one.

So why are you repeating it then? No-one suggested it as a permanent feature, only to show that a game would max out 4GB of RAM and when you have no pagefile, the system will crash

So why are you repeating it then? No-one suggested it as a permanent feature, only to show that a game would max out 4GB of RAM and when you have no pagefile, the system will crash

Because I like to correct misinformation, I can be a pain in the butt like that.

Because I like to correct misinformation, I can be a pain in the butt like that.

But you weren't correcting misinformation, in-fact you forced me to correct you, the information was correct, there was not even a discussion about disabling the pagefile other than to temporarily do it for a test

Just to add my $0.02 to the discussion.

With regards to turning off the pagefile, I don't like doing it myself. It can SOMETIMES cause windows to go crazy, and some programs expect it to be there. Personally I run with a 1GB pagefile with 8GB of RAM.

The biggest issue that occurs isn't to do with maxing out the RAM I believe. I think its some legacy from when RAM was scarce, but windows loves to page out RAM whenever it can, so even if you are only using 3 of the 4GB you have, then windows will start paging some areas of memory, and you can run into FPS issues.

For the most part, "casual games", (such as LoL or D3) use around 700-1000MB of RAM, and will generally run fine with 4GB of ram (if you're not transcoding lord of the rings, solving the 102385th prime number, and sequencing DNA in the backgound).

I was referring to this post.

I was referring to this post.

Ok well as I brought up the subject of the pagefile, and nothing was quoted in your post I took that as a reply to me

I did experiment with disabling it yonks ago but bad things happened and noticed no improvements either

Ok well as I brought up the subject of the pagefile, and nothing was quoted in your post I took that as a reply to me

I did experiment with disabling it yonks ago but bad things happened and noticed no improvements either

Sorry for the confusion, I should have originally quoted that post

Even i have similar system with even lesser ram (2GB) , will adding more ram help me to get better FPS in Saints row the third? Or is it the processor which is umm bottle-necking ? Even at lowest settings the game is not playable while i see Youtube videos of people having even worse GPU and yet they manage to play it nice on relatively better settings.

Well with 2GB of RAM in general... it's definitely worth upgrading RAM as you WILL notice a difference in overall system performance as i had 2GB myself and then bought a new mobo/cpu/ram and now i am at 8GB and it makes a world of difference as you can run any programs you want and when you exit games the system is still perfectly responsive unlike when you have 2GB it has to reload a ton of data from the hard drive (which system slows down to a crawl during that time) back into RAM before it becomes nice and quick again. even going from 2GB to 4GB would make a clear difference since 2GB your really running on the edge especially when web browsers can burn up 500-700MB pretty quickly where as once you get 4GB that should generally be 'good enough' although depending on what type of RAM you got it's probably a good idea to upgrade to 8GB since DDR3 ram is quite cheap and with 8GB your PC is future proofed as far as RAM goes as with 8GB you can safely assume nothing will really use that much unto the foreseeable future as far as general system use goes and gaming.

but if your on the older DDR or DDR2 RAM still seems to be fairly expensive in which case if you don't want to get a PC i would at least go to 4GB if possible but if you got to 4GB of RAM it's a very good idea to have a 64bit OS otherwise you won't use all of that 4GB of RAM.

i would imagine even in games to some degree you might notice it. but not because of the RAM itself doing it, but because when the game loads from the hard drive it can cause the frame rate to stutter a bit which when you got 2GB of RAM odds are it will be loading from the hard drive fairly often especially on any fancy games.

but as far as that Saints Row thing... if that's a crappy port like GTA4 is that right there ain't doing any favors for your frame rate.

I didn't say Crysis 2, but yea it was up to date when I found out it kills the system with no pagefile, generally when I was causing some big explosions

Clearly that's a problem with the game, hardware / drivers, or OS then.

Clearly that's a problem with the game, hardware / drivers, or OS then.

How is that clearly a problem with all of the above and not the machine running out of RAM ?

The game does not crash with the pagefile enabled, yet it does when it is disabled, the main function of the pagefile is to use the HDD as virtual RAM when the physical RAM is maxxed out

No pagefile, what does the system do when it runs out of RAM? It bluescreens (If you turn off the low memory warning)

With regards to turning off the pagefile, I don't like doing it myself. It can SOMETIMES cause windows to go crazy, and some programs expect it to be there.

I'm not a Windows expert by any measure, but I was under the impression that any allocation of the pagefile/swap is managed by the OS opaquely in such a way that applications don't have to concern themselves with such trivialities. Application heap memory allocation is done though malloc() and friends. I don't see how an application can depend on its (pagefile) presence without breaking the blackbox abstraction that the OS's memory management API provides.

Whenever I've written applications, I've only ever dealt with the malloc interface, and the OS decides if it needs to use disk space due to low memory conditions.

Personally I run with a 1GB pagefile with 8GB of RAM.

That won't be much help if you want to suspend/hibernate though. To be honest, if you're got 8GB of ram, a 1GB pagefile is quite pointless for a few reasons:

1. If you think you're going to run out of memory, and you're burning through 8GB so fast, how is only 1GB going to help?

2. Swapping processes in and out of memory to disk is expensive, in terms of processor resources, energy, and disk longevity.

3. When the OS starts going to the pagefile/swap for all new memory operations, the system is going to crawl to a halt. I can understand if you've only 512MB, 1GB, or even 2GB, but not if you've got 4GB or more. And even then, who's going to want to continue using a system that's relying soley on the pagefile for doing stuff? If you're running out all the time, get more memory, or cut down on the parallel work. I really don't see the benefit of a pagefile for systems with large amounts of memory.

The biggest issue that occurs isn't to do with maxing out the RAM I believe. I think its some legacy from when RAM was scarce, but windows loves to page out RAM whenever it can, so even if you are only using 3 of the 4GB you have, then windows will start paging some areas of memory, and you can run into FPS issues.

That's why I dislike the pagefile in principal. It just slows down the system and uses resources that could be better spent elsewhere. But that's just my opinion, and everybody's entitled to their own :)

I'm not a Windows expert by any measure, but I was under the impression that any allocation of the pagefile/swap is managed by the OS opaquely in such a way that applications don't have to concern themselves with such trivialities. Application heap memory allocation is done though malloc() and friends. I don't see how an application can depend on its (pagefile) presence without breaking the blackbox abstraction that the OS's memory management API provides.

Whenever I've written applications, I've only ever dealt with the malloc interface, and the OS decides if it needs to use disk space due to low memory conditions.

That won't be much help if you want to suspend/hibernate though. To be honest, if you're got 8GB of ram, a 1GB pagefile is quite pointless for a few reasons:

1. If you think you're going to run out of memory, and you're burning through 8GB so fast, how is only 1GB going to help?

2. Swapping processes in and out of memory to disk is expensive, in terms of processor resources, energy, and disk longevity.

3. When the OS starts going to the pagefile/swap for all new memory operations, the system is going to crawl to a halt. I can understand if you've only 512MB, 1GB, or even 2GB, but not if you've got 4GB or more. And even then, who's going to want to continue using a system that's relying soley on the pagefile for doing stuff? If you're running out all the time, get more memory, or cut down on the parallel work. I really don't see the benefit of a pagefile for systems with large amounts of memory.

That's why I dislike the pagefile in principal. It just slows down the system and uses resources that could be better spent elsewhere. But that's just my opinion, and everybody's entitled to their own :)

You need to read up on what the pagefile is for, and what has hibernation got to do with it? What do you think hiberfil.sys is ?

How is that clearly a problem with all of the above and not the machine running out of RAM ?

I'd like to see a screenshot of what you're running, how much memory Crysis is really using, and the BSOD. You were suggesting that running Crysis without a pagefile alone was the cause of a BSOD, and I'm saying, I find it hard to believe the game alone is using that amount of ram, unless it's 1) a bug. 2) you're running other things in the background. 3) You're running mods for the game.

The game does not crash with the pagefile enabled, yet it does when it is disabled, the main function of the pagefile is to use the HDD as virtual RAM when the physical RAM is maxxed out

So you don't notice a visible performance drop when the pagefile starts kicking in then? I've experienced it before, and the system grinds to a halt, especially in games. What I'm saying is, if you're always running out of memory, fine, get some more, but to rely on the pagefile all the time and by doing so degrading system performance, is asinine.

No pagefile, what does the system do when it runs out of RAM? It bluescreens (If you turn off the low memory warning)

On Windows perhaps. I've had low memory warnings on Windows before, but I can't say I've ever seen it blue screen (not to say it doesn't happen).

On GNU/Linux for instance, I've never experienced a total system lockup due to low memory. It's mostly just simple warnings and a few sigsegs.

To disable the pagefile and constantly get out of memory errors is even more asinine. Linux still has swap partitions, and the same thing would happen if you had no swap partition, Linux isn't immune to the physical limitations of computer hardware,

You need to read up on what the pagefile is for, and what has hibernation got to do with it? What do you think hiberfil.sys is ?

Like I said I'm not an expert on Windows. I didn't know Windows uses a separate file for hibernation. I'm used to Linux's swap partition/file which is used for both paging and hibernation/suspension.

To disable the pagefile and constantly get out of memory errors is even more asinine. Linux still has swap partitions, and the same thing would happen if you had no swap partition, Linux isn't immune to the physical limitations of computer hardware,

I don't use a swap partition on Linux either. Never had a need for it. That's just my personal opinion though. I'm not suggesting everyone has to do it.

But I have a question, If you're constantly having to go to the swap because the system is low on memory, isn't it better to just add more memory than degrade system performance by using the disk as a memory substitute?

Haha I'm not entirely sure how this turned into such a heated pagefile debate =P (if someone does want to hear my justifications, feel free to pm me)

If the OP is still here, I would suggest if you can afford the $30, the extra RAM wont harm. Will it make a massive difference? Depends on how you use your computer, it could do (check what your current useage is).

With regards to a pagefile, you can leave it on as any resources it uses to page out RAM is minimal (in the grand scheme of things). If you want to 'live on the edge' you can turn it off - if it all goes pear shaped, turn it back on =)

Haha I'm not entirely sure how this turned into such a heated pagefile debate =P (if someone does want to hear my justifications, feel free to pm me)

I guess it was my fault for bringing it up. Sorry OP :(

I agree with the rest of what you said.

I don't use a swap partition on Linux either. Never had a need for it. That's just my personal opinion though. I'm not suggesting everyone has to do it.

But I have a question, If you're constantly having to go to the swap because the system is low on memory, isn't it better to just add more memory than degrade system performance by using the disk as a memory substitute?

Sure, if you're technically proficient enough to do so, and can afford top of the range hardware. But even on high end systems the OS still swaps data in and out of vmem so obviously it's designed like that for a reason. If your OS is designed to do it, why not get the hint and just leave it alone?

AMD Athlon II X4 620 | Sapphire HD 5770 1GB

Nice system :D

Haha I'm not entirely sure how this turned into such a heated pagefile debate =P (if someone does want to hear my justifications, feel free to pm me)

If the OP is still here, I would suggest if you can afford the $30, the extra RAM wont harm. Will it make a massive difference? Depends on how you use your computer, it could do (check what your current useage is).

With regards to a pagefile, you can leave it on as any resources it uses to page out RAM is minimal (in the grand scheme of things). If you want to 'live on the edge' you can turn it off - if it all goes pear shaped, turn it back on =)

Well I was only going to buy the xtra RAM if it would improve my average framerate in games, but it appears that it will only improve OS performance, loading times, and brief occurances of stuttering in games (pagefile access). Since none of these are really a problem for me, and all I'm looking to do is improve gaming framerates, I'll save the money for a new CPU later on instead. Or maybe I'll just go by an 1/8th and enjoy what I have :rofl:

Why on earth would anyone turn off the page file? I mean, I can understand setting it to a specific size so that it doesn't constantly change size... but turn it off? I mean, doesn't windows do that all on its own? I figure with a few decades of experience programming operating systems for gamers, Microsoft would have included some sort of mechanism to only use the page file when absolutely necessary...

Nice system :D

Well I was only going to buy the xtra RAM if it would improve my average framerate in games, but it appears that it will only improve OS performance, loading times, and brief occurances of stuttering in games (pagefile access). Since none of these are really a problem for me, and all I'm looking to do is improve gaming framerates, I'll save the money for a new CPU later on instead. Or maybe I'll just go by an 1/8th and enjoy what I have :rofl:

Why on earth would anyone turn off the page file? I mean, I can understand setting it to a specific size so that it doesn't constantly change size... but turn it off? I mean, doesn't windows do that all on its own? I figure with a few decades of experience programming operating systems for gamers, Microsoft would have included some sort of mechanism to only use the page file when absolutely necessary...

Because people think that the OS is constantly running from pagefile rather than RAM and thinking that forcing it to run purely in physical memory would make it faster, but as the OS does not run in the pagefile (Not in the sense that a lot of people think it does) it makes no difference, not in a good way anyway

Anyone who wants to read up on it

https://blogs.technet.com/b/askperf/archive/2007/12/14/what-is-the-page-file-for-anyway.aspx?Redirected=true

Gaming is a lot more immersive when it's fluid and smooth. Alleviating loading pauses is just as conducive to smooth gameplay as increasing the framerate. Given that memory is so cheap, it's really a no brainer.

Gaming is a lot more immersive when it's fluid and smooth. Alleviating loading pauses is just as conducive to smooth gameplay as increasing the framerate. Given that memory is so cheap, it's really a no brainer.

Right, but I don't experience the page-file-using stutterfarks that having too little RAM would cause. So as far as I can tell, I have more than enough RAM for all the games that I play, except for, like I said, when I'm flying a jet at mach 1 and it can't load the textures as fast as I can fly. But that is the only case that I can think of when I experience the effects of having too little RAM.

Or is that a VRAM issue?

Right, but I don't experience the page-file-using stutterfarks that having too little RAM would cause. So as far as I can tell, I have more than enough RAM for all the games that I play, except for, like I said, when I'm flying a jet at mach 1 and it can't load the textures as fast as I can fly. But that is the only case that I can think of when I experience the effects of having too little RAM.

Or is that a VRAM issue?

Could be a CPU issue too, I remember RAGE having texture streaming issues

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • After enabling it in about:config, customize, density, compact; the toolbar/address bar gets smaller vertically. I enabled Nova, I notice the tab bar/title bar is a bit larger vertically now? Everything always becomes a waste of space.
    • Microsoft's Copilot Cowork now generally available with usage-based billing by Pradeep Viswanathan Back in March, Microsoft first revealed Copilot Cowork, a new agentic AI experience in Microsoft 365 Copilot through which users can assign tasks to AI to complete in the background. After testing the service with a limited set of customers in Research Preview for a few weeks, Microsoft announced the general availability of Copilot Cowork to customers in the Frontier program on March 30. Today, Microsoft announced the general availability of Copilot Cowork worldwide for Microsoft 365 Copilot customers. The company also highlighted that Cowork became the fastest-growing feature in the history of its Frontier program. Unlike regular Copilot Chat, Copilot Cowork can run complex, long-running, multi-tool tasks from start to finish in the cloud by using organizational context through Work IQ. When compared to Claude Cowork, Microsoft claims that Copilot Cowork will be 30% to 40% cheaper on average with its Microsoft 365 connector. For now, Copilot Cowork runs on Anthropic models, including Opus 4.8 and Sonnet 4.6. However, Frontier customers can now use GPT-5.5. Microsoft also announced Cowork 1, a secure fine-tuned model coming in the next few weeks, which is designed to handle everyday Copilot tasks at a lower cost. To access Copilot Cowork, a Microsoft 365 Copilot user subscription is required. Usage is billed separately through Copilot Credits, based on model use, context retrieval, tool calls, and runtime. Pay-as-you-go pricing is set at $0.01 per Copilot Credit. To offer IT teams full control over usage costs, Microsoft provides spending limits, usage alerts, user-level controls, reporting, and prepaid usage plans for organizations. Usage-based billing begins today. However, Frontier customers who used Cowork between March 30 and June 16 will not be billed until July 1, 2026. The Microsoft 365 Copilot app now includes a toggle to enter the full Cowork experience. Microsoft is also adding partner plugins, with Enosix, Harvey, LSEG, Miro, monday.com, Moody’s, Morningstar, S&P Global Energy, and TeamsMaestro available now. Adobe, Atlassian, Box, Canva, Databricks, and others are coming soon.
    • With Nova enabled I am not seeing a difference with compactmode.show?
    • HOLY THREAD REVIVAL   But yes, look for browser.nova.enabled and set it to true
    • 5-year subscription to AdGuard VPN price-dropped now 90% off by Steven Parker Today's highlighted deal comes via our Apps + Software section of the Neowin Deals store, where you can save 88% off a 5-year subscription to AdGuard VPN. In the digital age where internet privacy is paramount, AdGuard VPN emerges as an essential tool. This virtual private network (VPN) is your encrypted gateway to the internet, helping your data stay secure and your online activities remain private, regardless of your location. More than just a privacy tool, AdGuard VPN is a robust solution packed with features that cater to a variety of internet needs. Why AdGuard VPN subscription deal over other VPNs: Exhaustive List of Locations: With 60+ locations available worldwide, you have the freedom to connect from anywhere you want, effectively bypassing geographically restricted content. Check complete list of servers here. Advanced Security Protocol: AdGuard VPN uses its own security protocol, guaranteeing a faster and safer VPN connection. This means you can browse, stream, and download with peace of mind knowing your data is secure. Zero-Logging Policy: Rest assured, your personal data is not collected and your internet traffic stays private at all times, thanks to AdGuard's strict zero-logging policy. Simultaneous Connections: Connect up to 10 devices simultaneously, providing protection for all your devices under just one account. Trusted Developer: AdGuard is a renowned name in the world of computer security, bringing their expertise and commitment to privacy and security to their VPN service. What You Get: Up to 10 devices connected simultaneously All locations Light-speed servers Unlimited data No logs policy Trusted developer Available on all platforms Privacy Created by a team from Russia, AdGuard software Limited is headquartered in Limassol, Cyprus. While the country does follow European privacy laws, it's not part of the 5/9/14 Eyes Alliance. Adguard may not properly work in China. Good to know Length of access: 5 years This plan is only available to new users Redemption deadline: redeem your code within 30 days of purchase Device per license: 10 Access options: desktop & mobile Updates included 5- years of AdGuard VPN normally costs $359.40 without discounts, but it can be yours just $39.97, that's a saving of $324.43 (90%) off. For full terms, specifications, and license info please click the link below. Get this 5-year AdGuard VPN deal for just $34.97 (was $359.40) Although priced in U.S. dollars, this deal is available for digital purchase worldwide. Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
  • Recent Achievements

    • One Year In
      Console General earned a badge
      One Year In
    • One Year In
      Twozo Technologies earned a badge
      One Year In
    • One Month Later
      Twozo Technologies earned a badge
      One Month Later
    • Week One Done
      Twozo Technologies earned a badge
      Week One Done
    • Veteran
      branfont went up a rank
      Veteran
  • Popular Contributors

    1. 1
      +primortal
      522
    2. 2
      +Edouard
      196
    3. 3
      PsYcHoKiLLa
      111
    4. 4
      Steven P.
      90
    5. 5
      Nick H.
      71
  • Tell a friend

    Love Neowin? Tell a friend!