• Products
  • Solutions
  • Customers
  • Resources
  • Company
  • Pricing
  • Download
Try Playground
  • Client Side Features
  • ASP.NET Caching Benefits and Overview
  • ASP.NET Session State Provider Properties
Show / Hide Table of Contents
  • Programmer's Guide
  • Setting Up Development Environment
    • .NET
      • Client API Prerequisites
      • Server-side API Prerequisites
    • Java
      • Client API Prerequisites
      • Server-side API Prerequisites
    • Python
      • Client API Prerequisites
    • Node.js
      • Client API Prerequisites
  • Client Side API Programming
    • Error Handling
    • Troubleshooting
    • Cache Keys and Data
    • How to Connect to Cache
    • Basic Operations - An Overview
      • Add Data
      • Update/Insert Data
      • Retrieve Data
      • Remove Data
    • Groups
      • Overview
      • Add/Update Data with Groups
      • Retrieve Data with Groups
      • Remove Data with Group
      • Search Group Data Using SQL
      • Delete Group Data Using SQL
    • Tags
      • Overview
      • Add/Update Data with Tags
      • Retrieve Data with Tags
      • Remove Data with Tags
      • Search Tag Data Using SQL
      • Delete Tag Data Using SQL
    • Named Tags
      • Overview
      • Add/Update Data with Named Tags
      • Remove Data with Named Tags
      • Search Data with Named Tags Using SQL
      • Delete Data with Named Tags Using SQL
    • Expirations
      • Overview
      • Absolute Expiration
      • Sliding Expiration
    • Data Dependency
      • Key Dependency
      • Multi-Cache Dependency
    • Dependency on Database
      • SQL Server
      • Oracle
      • OleDB with Polling
      • CLR Procedures in SQL Server
    • Dependency on External Source
      • File Dependency
      • Custom Dependency
      • Aggregate Dependency
    • Locks
      • Types of Locking
      • Pessimistic Locking
      • Optimistic Locking
    • SQL Query
      • Overview
      • Define Indexes Programmatically
      • Query with ExecuteReader and ExecuteScalar
      • Delete Data with ExecuteNonQuery
      • SQL Reference
    • LINQ Query
      • Overview
      • LINQ Query for Objects
      • LINQ Reference
    • Data Structures
      • Overview
      • List
      • Queue
      • Set
      • Dictionary
      • Counter
      • Invalidation Attributes
      • Searchable Attributes
      • Query on Data Structures
      • Remove from Data Structure
    • Events
      • Cache Level Events
      • Item Level Events
      • Management Level Events
    • Pub/Sub Messaging
      • Overview
      • Topics
      • Publish Messages
      • Subscribe to a Topic
      • Pub/Sub Events
    • Continuous Query
      • Overview
      • Use Continuous Query
    • Stream Processing
      • Add/Update Stream Data
      • Retrieve Stream Data
    • JSON
      • Overview
      • Use JSON Objects
      • Query JSON Data
    • Security API
      • Login with Credentials
    • Management API
    • Clear Cache
    • Error Logging
    • Location Affinity
  • Server-side API Programming
    • Loader and Refresher
      • Overview
      • Implement Loader and Refresher
      • Components of Loader/Refresher
    • Data Source Providers
      • Read-through
        • Implement Read-through
        • Use Read-through
      • Write-through
        • Implement Write-through
        • Use Write-through
        • Use Write-behind
    • Custom Dependency
      • Implement Extensible Dependency
      • Implement Bulk Extensible Dependency
      • Implement Notify Extensible Dependency
    • Bridge Conflict Resolver
    • Entry Processor
      • Overview
      • Implement Entry Processor
    • MapReduce
      • Overview
      • Implement MapReduce
      • Use MapReduce
    • MapReduce Aggregator
      • Overview
      • Implement and Use Aggregator
    • Compact Serialization
  • Client Side Features
    • ASP.NET Core Caching
      • Session Storage
        • Session Provider
        • IDistributedCache
        • Sessions Usage
        • Multi-site Session Provider
        • Session Sharing with ASP.NET
      • SignalR
        • NCache Extension for SignalR Core
      • Response Caching
        • Configure and Use
        • Configure with IDistributedCache
      • Data Caching
        • NCache API
        • IDistributedCache API
      • Data Protection Provider
        • Configure
    • Java Web App Caching
      • Web Sessions
        • Overview
        • Configure App
          • Add Maven Dependencies
          • Deploy Application
        • Multi-site Sessions
    • Node.js App Caching
      • Web Sessions
    • ASP.NET Caching Benefits and Overview
      • ASP.NET Session State Provider Properties
      • Multi-region ASP.NET Session State Provider Configuration
      • Session Sharing between ASP.NET and ASP.NET Core
      • ASP.NET SignalR Backplane
        • NCache Extension for SignalR
      • ASP.NET View State Caching
        • View State Content Optimization Configuration
        • Group View State with Sessions
        • Limit View State Caching
        • Page Level Grouping
      • ASP.NET Output Cache
        • Output Caching Provider Overview
        • Output Cache with Custom Hooks
  • .NET Third Party Integrations
    • Entity Framework (EF) Core
      • Installation
      • Configure
      • EF Core Extension Methods
        • Extension Methods
        • Cache Handle
        • Caching Options
        • Query Deferred API
      • Logging in EF Core
    • Entity Framework EF 6
      • EF Second Level Cache
      • EF Caching Resync Provider
      • EF Caching Configuration File
    • NHibernate
      • Second Level Cache
      • Query Caching
      • Synchronize Database with Cache
    • Debug NCache Providers in Visual Studio
  • Java Third Party Integrations
    • Hibernate
      • Second Level Cache
      • Configure Cacheable Objects and Regions
      • Configure Application
      • Query Caching
    • Spring
      • Overview
      • Use NCache with Spring
        • Configure Generic Provider
        • Configure JCache Spring Caching Provider
        • Configure Caching Declaration
        • Configure Spring Sessions
    • JCache API
      • CRUD Operations
      • Expiration
      • Events
  • Third-Party Wrappers
    • AppFabric to NCache Migration
      • AppFabric API vs. NCache API
      • Configuration Differences Between AppFabric and NCache
      • Migrating from an AppFabric Application to NCache
    • Redis to NCache Migration
      • Redis to NCache Migration
    • Memcached Wrapper
      • Memcached Gateway Approach
      • Memcached Client Plugin for .NET

ASP.NET Session-State Provider Properties

Storing ASP.NET sessions in NCache requires no programming. NCache ASP.NET Session-State Provider is a custom SessionStateStoreProviderBase implementation for an ASP.NET application. To configure and fetch ASP.NET Sessions in your application, the following modifications are required.

Note

This feature is also available in NCache Professional.

ASP.NET Session State Prerequisites

  • .NET
  • Install the following NuGet packages in your application based on your NCache edition:
    • Enterprise: AspNet.SessionState.NCache
    • Professional: AspNet.SessionState.NCache.Professional
    • OpenSource: AspNet.SessionState.NCache.OpenSource
  • The cache must be running.

Modify asp.net session state Tag

Edit your application's Web.config file and modify the <sessionState> section as given below.

<configuration>
  ...
  <sessionState cookieless="false"
                regenerateExpiredSessionId="true"
                mode="Custom"
                customProvider="NCacheSessionProvider"
                timeout="20">
    <providers>
      <add name="NCacheSessionProvider"
          type="Alachisoft.NCache.Web.SessionState.NSessionStoreProvider"
           cacheName="demoCache"
           sessionAppId="demoApp"
           useInProc="false"
           enableLogs="false"
           exceptionsEnabled="true"
           writeExceptionsToEventLog="false"
           AsyncSession="false"
           useJsonSerialization="false"
           enableSessionLocking="true"
           sessionLockingRetry="-1"
           emptySessionWhenLocked="false" />       
    </providers>

  </sessionState>
...
</configuration>

Modify MachineKey Tag for Web Farms

In the case of web farms, add the <machineKey> tag under <system.web> section. To generate ASP.NET Session IDs in the same manner on all nodes. Learn about how to generate a machine-key for a web farm: Generate a Machine Key for a Web Farm (IIS 7)

<machineKey validationKey ="A01D6E0D1A5D2A22E0854CA612FE5C5EC4AECF24"
   decryptionKey ="ACD8EBF87C4C8937" validation ="SHA1"/>

Serializing Session Objects

Before you start using NCache to store and retrieve your ASP.NET Session objects, you need to know that you can't store these objects inside the cache directly. To store these session objects inside the cache, you need to serialize them first. There are different methods you can adopt to serialize your session objects. These methods are as follows:

Binary Serialization

You can use this serialization method if you have access to the source code of the application. In this case, you have to mark all the objects (the ones you want to store inside the cache) as serializable.

Note

However, this method is obsolete as of .NET 6.0 and if you use Binary Serialization or Compact Serialization within any ASP.NET applications, they will throw an exception informing users accordingly.

NCache Compact Serialization

As an alternative to binary serialization, you can use NCache Compact Serialization to serialize your session objects. It is faster and only requires modifying your configuration files instead of modifying the source code.

The only problem with this method is that the configuration change can be a big one if the number of classes that you want to serialize is large.

JSON Serialization

If either of the serialization techniques mentioned above does not do the job for you, then you can opt for JSON serialization instead. Using this method is super fast and simple as it only requires to make a single change to your web.config file and the rest of the job is done by NCache at runtime.

You just have to set the value of the usejsonserialization flag as True. By default, the value of this flag is False.

Fetch Session Data

NCache allows viewing all session data stored in a clustered cache via the NCache Session State Module. All session data is added in the specified cache as a tagged cache item with Tag NC_ASP.net_session_data.

The previously stored session data can be fetched by the GetByTag API, which returns a dictionary populated with session IDs and associated session data stored in the cache.

var allSessionData = cache.SearchService.GetByTag(new Tag("NC_ASP.net_session_data"));

SessionState Properties

Following is the description of the different key-value pairs specified above:

Member Description
sessionAppId It is an optional string attribute that specifies an identifier to make sure that the session Id remains unique in case multiple applications are using the same cache. Application Id should be the same for an application in a web farm. If no app Id is specified, nothing will be concatenated with the session Id.
cacheName This is a required String attribute that specifies the name of the cache to be used for the caching session. If no cache name is specified, a configuration exception will be thrown.
enableSessionLocking An optional Boolean attribute. If this flag is set to True, the NCache Session Store Provider exclusively locks the session store item for which multiple concurrent requests are made. The default value is False.
sessionLockingRetry This is an optional Integer attribute. If enableSessionLocking is True and this integer is not less than 0, the NCache Session Store Provider will return an empty session after sessionLockingRetry, which specifies the number of retries to acquire a lock. The default value is -1.
writeExceptionsToEventLog An optional Boolean attribute. If this flag is set to True, all the exceptions from cache API are written to event logs. The default value is False.
enableLogs It is an optional Boolean attribute. When this flag is set to True, the store provider logs all error information. The log files are created in %NCHOME%\log-files\SessionStoreProvider (Windows) or /opt/ncache/log-files/SessionStoreProvider (Linux). The default value is False.
enableDetailLogs An optional Boolean attribute. When this flag is set to True, the store provider logs all debugging information. The log files are created in %NCHOME%\log-files\SessionStoreProvider (Windows) or /opt/ncache/log-files/SessionStoreProvider (Linux). The default value is False.
exceptionsEnabled This is an optional Boolean attribute that specifies whether exceptions from cache API are propagated to the page output. Setting this flag to True is especially helpful during the development phase of the application since exceptions provide more information about the specific causes of failure. The default value is False.
operationRetry It specifies the number of times the server will retry the operation, in case a connection is lost with a server while an operation is executing. Its default value is 0(zero). operationRetry
operationRetryInterval It specifies the time interval between each operation retry, in case a connection is lost with the server. Its default value is 0(zero).
usejsonserialization This is a boolean attribute. If you want to use JSON serialization for your ASP.NET Session objects, set the value of this attribute as True. By default, the value of this attribute is False.

See Also

.NET: Alachisoft.NCache.Web.SessionState namespace.

In This Article
  • ASP.NET Session State Prerequisites
  • Modify asp.net session state Tag
  • Modify MachineKey Tag for Web Farms
  • Serializing Session Objects
    • Binary Serialization
    • NCache Compact Serialization
    • JSON Serialization
  • Fetch Session Data
  • SessionState Properties
  • See Also

Contact Us

PHONE

+1 (214) 764-6933   (US)

+44 20 7993 8327   (UK)

 
EMAIL

sales@alachisoft.com

support@alachisoft.com

NCache
  • NCache Enterprise
  • NCache Professional
  • Edition Comparison
  • NCache Architecture
  • Benchmarks
Download
Pricing
Try Playground

Deployments
  • Cloud (SaaS & Software)
  • On-Premises
  • Kubernetes
  • Docker
Technical Use Cases
  • ASP.NET Sessions
  • ASP.NET Core Sessions
  • Pub/Sub Messaging
  • Real-Time ASP.NET SignalR
  • Internet of Things (IoT)
  • NoSQL Database
  • Stream Processing
  • Microservices
Resources
  • Magazine Articles
  • Third-Party Articles
  • Articles
  • Videos
  • Whitepapers
  • Shows
  • Talks
  • Blogs
  • Docs
Customer Case Studies
  • Testimonials
  • Customers
Support
  • Schedule a Demo
  • Forum (Google Groups)
  • Tips
Company
  • Leadership
  • Partners
  • News
  • Events
  • Careers
Contact Us

  • EnglishChinese (Simplified)FrenchGermanItalianJapaneseKoreanPortugueseSpanish

  • Contact Us
  •  
  • Sitemap
  •  
  • Terms of Use
  •  
  • Privacy Policy
© Copyright Alachisoft 2002 - 2025. All rights reserved. NCache is a registered trademark of Diyatech Corp.
Back to top