Redis Cache Shared Session ConfigurationRedis Cache with Glass mapper interfaces in Sitecore 8.1 and aboveOptimal HTML cache size?Does Sitecore cache overlap?AWS Redis session provider exception- No connection is available to service this operation: EVALHow can I verify that Azure Redis and Shared Session is working correctly?Azure Redis Cache, is it necessary for Sitecore?Sitecore XM with Redis cache

Showing that the limit of non-eigenvector goes to infinity

The No-Free-Lunch Theorem and K-NN consistency

How to respectfully refuse to assist co-workers with IT issues?

Obtaining the intermediate solutions in AMPL

Does an atom recoil when photon radiate?

How long do you think advanced cybernetic implants would plausibly last?

'Us students' - Does this apposition need a comma?

Nothing like a good ol' game of ModTen

Why is 1. d4 Nf6 2. c4 e6 3. Bg5 almost never played?

Two questions about typesetting a Roman missal

How can I unambiguously ask for a new user's "Display Name"?

Non-visual Computers - thoughts?

What are some interesting features that are common cross-linguistically but don't exist in English?

Is "The life is beautiful" incorrect or just very non-idiomatic?

Algorithms vs LP or MIP

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

Sum ergo cogito?

If an earthquake can destroy buildings why it cant kill us according to physics?

Was the Boeing 2707 design flawed?

Tex Quotes(UVa 272)

How to find out the average duration of the peer-review process for a given journal?

Was it ever possible to target a zone?

Very slow boot time and poor perfomance

Is gzip atomic?



Redis Cache Shared Session Configuration


Redis Cache with Glass mapper interfaces in Sitecore 8.1 and aboveOptimal HTML cache size?Does Sitecore cache overlap?AWS Redis session provider exception- No connection is available to service this operation: EVALHow can I verify that Azure Redis and Shared Session is working correctly?Azure Redis Cache, is it necessary for Sitecore?Sitecore XM with Redis cache






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm trying to configure Redis cache session storage for my CD environments.



I'm following this document -> https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-shared-session-state-database-using-the-redis-provider.html



In that document, it is only mention to change the setting under tracking/sharedSessionState. But nothing is mentioned about the sessionState configuration in the web.config file.
i.e.



<sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager">
<providers>
<add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
<add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
<add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
</providers>
</sessionState>


Don't we have to change this sessionState configuration also to mode="custom" & customProvider="Redis"



ex:



<sessionState mode="Custom" customProvider="redis" cookieless="false" timeout="20">
<providers>
<add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
<add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
<add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
</providers>
</sessionState>









share|improve this question






























    1















    I'm trying to configure Redis cache session storage for my CD environments.



    I'm following this document -> https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-shared-session-state-database-using-the-redis-provider.html



    In that document, it is only mention to change the setting under tracking/sharedSessionState. But nothing is mentioned about the sessionState configuration in the web.config file.
    i.e.



    <sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager">
    <providers>
    <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
    <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
    <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
    </providers>
    </sessionState>


    Don't we have to change this sessionState configuration also to mode="custom" & customProvider="Redis"



    ex:



    <sessionState mode="Custom" customProvider="redis" cookieless="false" timeout="20">
    <providers>
    <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
    <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
    <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
    </providers>
    </sessionState>









    share|improve this question


























      1












      1








      1


      1






      I'm trying to configure Redis cache session storage for my CD environments.



      I'm following this document -> https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-shared-session-state-database-using-the-redis-provider.html



      In that document, it is only mention to change the setting under tracking/sharedSessionState. But nothing is mentioned about the sessionState configuration in the web.config file.
      i.e.



      <sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager">
      <providers>
      <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
      </providers>
      </sessionState>


      Don't we have to change this sessionState configuration also to mode="custom" & customProvider="Redis"



      ex:



      <sessionState mode="Custom" customProvider="redis" cookieless="false" timeout="20">
      <providers>
      <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
      </providers>
      </sessionState>









      share|improve this question














      I'm trying to configure Redis cache session storage for my CD environments.



      I'm following this document -> https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-shared-session-state-database-using-the-redis-provider.html



      In that document, it is only mention to change the setting under tracking/sharedSessionState. But nothing is mentioned about the sessionState configuration in the web.config file.
      i.e.



      <sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager">
      <providers>
      <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
      </providers>
      </sessionState>


      Don't we have to change this sessionState configuration also to mode="custom" & customProvider="Redis"



      ex:



      <sessionState mode="Custom" customProvider="redis" cookieless="false" timeout="20">
      <providers>
      <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" connectionStringName="session" pollingInterval="2" compression="true" />
      <add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="private" connectionString="sharedSession" pollingInterval="2" compression="true" />
      </providers>
      </sessionState>






      caching redis






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 12 at 17:06









      scFootstepsscFootsteps

      2,4921 gold badge12 silver badges37 bronze badges




      2,4921 gold badge12 silver badges37 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          5















          Shared session configuration is for Analytics



          Ths sessionState setting in the web.config setting manages the Redis storage for your Sitecore session.



          Instructions found here:
          https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-private-session-state-database-using-the-redis-provider.html






          share|improve this answer





























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "664"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f20452%2fredis-cache-shared-session-configuration%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5















            Shared session configuration is for Analytics



            Ths sessionState setting in the web.config setting manages the Redis storage for your Sitecore session.



            Instructions found here:
            https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-private-session-state-database-using-the-redis-provider.html






            share|improve this answer































              5















              Shared session configuration is for Analytics



              Ths sessionState setting in the web.config setting manages the Redis storage for your Sitecore session.



              Instructions found here:
              https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-private-session-state-database-using-the-redis-provider.html






              share|improve this answer





























                5














                5










                5









                Shared session configuration is for Analytics



                Ths sessionState setting in the web.config setting manages the Redis storage for your Sitecore session.



                Instructions found here:
                https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-private-session-state-database-using-the-redis-provider.html






                share|improve this answer















                Shared session configuration is for Analytics



                Ths sessionState setting in the web.config setting manages the Redis storage for your Sitecore session.



                Instructions found here:
                https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--configuring-a-private-session-state-database-using-the-redis-provider.html







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Aug 12 at 17:13









                scFootsteps

                2,4921 gold badge12 silver badges37 bronze badges




                2,4921 gold badge12 silver badges37 bronze badges










                answered Aug 12 at 17:09









                Jon FairchildJon Fairchild

                1235 bronze badges




                1235 bronze badges






























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Sitecore Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f20452%2fredis-cache-shared-session-configuration%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                    Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                    Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form