Any performance gains when disabling secure virtual memory?
Solution 1:
According to MacWorld, the advantage of disabling encrypted swaps should be “just a slightly less overhead on the page in & out process”.
So yes, there is a minor performance gain, but it won’t be a huge performance boost. To me, it’s not worth the security risk (of potentially having unencrypted passwords and other sensitive data in swap memory).
You’d get a much bigger performance boost if you’d disable virtual memory completely:
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist
To re-enable it:
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist