Forums

Skip Navigation LinksHome / Developer Network / Forums / Sitefinity 3.x: Deployment > Sitefinity Performance Tuning

Sitefinity Performance Tuning

  • IT Department avatar

    Posted on Feb 4, 2010 (permalink)

    What resources are available for site performance tuning? I have gone through the KB article at http://www.sitefinity.com/support/kb/sitefinity-3-x/optimizing-performance-on-sitefinity-web-site.aspx. Using a pre-compiled site had a positive impact, but adding the "caching" attribute to the web.config generates a parsing error. Are there any similar articles focused on tuning the database?

    Thanks in advance.

    Reply

  • Ivan Dimitrov Ivan Dimitrov admin's avatar

    Posted on Feb 4, 2010 (permalink)

    Hello Tara Meon,

    1. Page caching provider

    <cms defaultProvider="Sitefinity" pageExtension=".aspx" redirectToHomePage="false" projectName="Project" disabled="false" pageEditorUIMode="Overlay">
                <providers>
                    <clear/>
                    <add connectionStringName="DefaultConnection" allowPageHistory="true"  allowPageWorkflow="False" cachingProviderName="ASPNET" name="Sitefinity" type="Telerik.Cms.Data.DefaultProvider, Telerik.Cms.Data"/>
                </providers>

    2.telerik/framework node of the web.config file, for production environment set cacheDependency mode to InDataBase

    <framework>
                <caching defaultProvider="memoryCache">
                    <providers>
                        <add name="memoryCache" type="Telerik.Caching.MemoryCachingProvider, Telerik.Framework"/>
                        <add name="ASPNET" type="Telerik.Caching.AspNetCachingProvider, Telerik.Framework" duration="120" slidingExpiration="true"/>
                    </providers>
                    <cacheDependency mode="InDatabase" checkExpriredInterval="10"/>
                </caching>

    3. Using RadCompression, RadScriptManager, RadStyleSheetManager.

    4. Using Substitution controls


    Kind regards,
    Ivan Dimitrov
    the Telerik team

    Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
    Follow the status of features or bugs in PITS and vote for them to affect their priority.

    Reply

  • Venkat avatar

    Posted on Jul 25, 2011 (permalink)

    Hi We are using Sitefinity 4.1.

    We have deployed it on our server and when we observed it , the page size is too big.When I observed the sequence of requests I have found that a dynamic ajax related javascript file is loading and its size is around 800kb.

    We are not using any Ajax functionality and I don't want to load these java script  files.How can I do it?

    here is our site url :http://67.205.230.228/

    Reply

  • Register for webinar
Skip Navigation LinksHome / Developer Network / Forums / Sitefinity 3.x: Deployment > Sitefinity Performance Tuning