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;
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
add a comment |
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
add a comment |
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
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
caching redis
asked Aug 12 at 17:06
scFootstepsscFootsteps
2,4921 gold badge12 silver badges37 bronze badges
2,4921 gold badge12 silver badges37 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
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
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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