What can I do to optimize my .NET websites and applications for 64-bit?
2 answers
I think you cannot optimize your .NET managed code for 32bit and 64bit architectures. This is because most of the differences and optimatins are most likely already implemented by the underlying virtual machine. As mentioned in Programming for a 64-bit platform , a 64-bit virtual machine can better handle larger data types (since it long
is stored in a single register).
+1
source to share
The best payoff in a 64-bit platform is the amount of memory your application can access. This means that your web application can support more active sessions or longer sessions. You can also store more data in the application cache. Therefore, with this in mind, you can architect your application.
0
source to share