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

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

                    Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

                    Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?