64-bit orientation

I am creating a web application in .Net and it will run on a 64 bit server. Is there something special I have to do to make full use of 64 bits?

The only thing that comes to mind is that RAM is cheap and "unlimited" for 64-bit, maybe I should cache as much as possible.

Edit: close as a duplicate What can I do to optimize my websites and .NET applications for 64-bit?

+1


source to share


1 answer


There is some good information here .

After a quick read, it looks like the ability to access (essentially) unlimited memory makes applications more efficient. As long as the OS and .NET CLR are 64-bit, you automatically benefit.



I would caution that this is not a fix for poorly written applications, nor does it mean that you now have a bottomless pit where cache items are stored. Keep your profiler handy and keep writing good code on a powerful platform.

+1


source







All Articles