Reducing Umbraco memory usage by enabling 32-bit applications

Enable 32-bit applications in IISSo enabling 32-bit applications within Microsoft IIS for the application pool behind an Umbraco installation, will make it use a LOT less memory!

Looking at the statistics for many websites that have been running in standard 64-bit, the applications used to use around 600 MB of RAM, however with 32-bit applications enabled, you will notice that it will use around 130 MB. After some research, I found that this is because the garbage collector runs more often for 32-bit applications, simply because a single application can only address 1 GB of RAM/memory. Putting this information to use, you can assume that the 64-bit applications whilst using a lot of memory would release it if the system needed it.

I've noticed that sometimes you get chucked out of the back office, after some reason, though after some research I found a thread about an Umbraco installation that also looses its session intermittently.

In short, looks like you can sort the session problem by storing it in a cookie instead of memory:

<system.web>
  <sessionState mode="StateServer" cookieless="false" timeout="20" /> 
</system.web>

I'd be interested to know what other people think of enabling 32-bit applications on Umbraco.


Published at

Tags: Umbraco

Luke Alderton

Comments

Andy
After 2 days of massive outages on my site, changing to 32 Bit App seems to have sorted it out. I was experiencing 95% Memory and CPU Usage with only one site running and one application pool dedicated for the site. Thanks for the post!
13/06/2016
Sotiris Filippidis
I've also noticed impressive differences between using 32 and 64-bit application pools for Umbraco. With 32-bit enabled, application pools seldom go over 300-400MB, while in 64-bit they'll go as high as 1.5GB.
06/07/2017
Ramachandran
Thanks for the post man. one of my our website used to take 10 minutes to load after restart and used to consume 1.2 GB to 1.5 GB of memory. After this fix, not it is within few seconds and the memory usage is 450-500 MB :) :)
04/02/2019
Share with
Tags
Latest Comments
By Mark Gentry on Windows Server 2019 - Change product key does nothing
20 Aug 2021, 03:30 AM
By Cathy on In-Place Upgrade for a Windows Server domain controller
31 Jul 2021, 18:28 PM
By Mr. Greymatter on Raspberry Pi - Running Java app on Raspbian
16 Feb 2021, 07:35 AM
By Mikko Seittenranta on Xamarin Forms multiple instances of same app open
16 Feb 2021, 04:34 AM
By Andrew on Auto/Custom height on Xamarin Forms WebView for Android and iOS
22 Jan 2021, 22:15 PM
By Nick on Raspberry Pi - Running Java app on Raspbian
14 Oct 2020, 19:37 PM
By Ivan on Fixed: Value cannot be null Parameter Name: source
15 Sep 2020, 19:47 PM
By Anand on Raspberry Pi - Bluetooth using Bluecove on Raspbian
7 Sep 2020, 16:53 PM
Categories
App Development
Event
Game Development
Mapping
Modelling
Programming
Review
Robotics
Tutorial
Web Development