In my asp.net application I’m referring around 50 assemblies ( 20 compiled class libraries & 30 3rd party assembly), If i deploy my assemblies in GAC rather than BIN, will i get any performance benefit.?, If so is that a significant amount?
In my asp.net application I’m referring around 50 assemblies ( 20 compiled class libraries
Share
No, the GAC only provides a way to share assemblies across applications (they don’t need their own local copy, and updates only need to be applied in one location).
You should look at NGen (JIT’ing) if you need better performance.