How to Configure Entity Framework Caching
Let's see how to configure entity framework caching.
Join the DZone community and get the full member experience.
Join For FreeDistributed Caching With Entity Framework
The Entity Framework is a set of technologies in ADO.NET that support the development of data-oriented software applications. With the Entity Framework, developers can work at a higher level of abstraction when they deal with data and can create and maintain data-oriented applications with less code than in traditional applications.
NCache introduces the caching provider, which acts between Entity Framework and the Data source. The major reason behind the EF Caching provider is to reduce database trips (which slow down application performance) and serve the query result from the cache. The provider acts in between the ADO.NET entity framework and the original data source. Therefore, the caching provider can be plugged without changing/compiling the current code.
You may also like: Entity Framework (EF) Core Cache
Integration Modes
NCache Entity Framework Caching provider works under two modes. It can either be in "Caching" or in "Analysis" mode. In caching mode, you can cache the result-set of selected queries. Analysis mode works in pass-through mode and helps you find the queries that you should cache by generating a report showing which queries are being called with what frequency.
Database Synchronization
NCache Entity Framework provider also ensures that data in the cache is always synchronized with the database. Therefore, NCache uses .NET SqlCacheDependeny, which registers a SQL query with SQL Server so if any row in the dataset represented by this query is changed in the database, SQL Server throws an event notification to NCache. NCache then removes the corresponding result-set from the cache.
How to Integrate NCache With Entity Framework
Prerequisites
1. You should have an Entity Framework application. (You can also use sample application for EFCaching from NCache sample applications from the following path:
"Installeddirectory:/ProgramFiles/NCache/samples/clr20/EntityDataModelIntegrationDemo")
In every Entity Framework application, ADO.NET Entity Data Model is already added, which automatically generates two files:
- SSDL
- Application (or web) configuration file
2. Microsoft Visual Studio 2010 for Entity Framework 3.5 and 4.0 and Microsoft Visual Studio 2012/2013 for Entity Framework 6.0 and 6.1
3. Database Tool (e.g. MS SQL SERVER 2008, ORACLE)
Steps to Enable NCache Caching
Step 1: Add Reference
Add Alachisoft.Integrations.EntityFramework.CachingProvider
reference to your Entity Framework application. This .dll file is placed on the following path:
"Installeddirectory:/ProgramFiles/NCache/integration/MSEntityFramework"
After adding the reference, changes are required in 3 different files.
Step 2: SSDL Configurations (for Entity Framework 3.5 and 4.0)
In SSDL file, which is generated on adding ADO.NET Entity Data Model in Entity Framework application, the following changes are required:
Below are the sample changes for an SQL 2008 database.
In SSDL, the provider name is specified in the Provider attribute of the <Schema/> element as shown below:
[Existing Code]
xxxxxxxxxx
<Schema Namespace = "NorthwindModel.Store" Alias = "Self" Provider = "System.Data.SqlClient" ProviderManifestToken = "2005"
xmlns:store ="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator"
xmlns ="http://schemas.microsoft.com/ado/2006/04/edm/ssdl">
In order to inject our NCache Entity Framework Provider, we need to override the above-highlighted attributes to plugin our provider. In SSDL, we put the name of the new provider in the Provider attribute and concatenate the previous provider with our provider manifest token in the ProviderManifestToken field, as shown below:
[Changed Code]
xxxxxxxxxx
<Schema Namespace = "NorthwindModel.Store" Alias = "Self"
Provider = "Alachisoft.Integrations.EntityFramework.CachingProvider"
ProviderManifestToken = "System.Data.SqlClient;2005"
xmlns:store = "http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator"
xmlns = "http://schemas.microsoft.com/ado/2006/04/edm/ssdl">
Step 3: Application (or Web) Configurations
Application (or web) configuration file, which is generated on adding ADO.NET Entity Data Model in Entity Framework application, requires the following changes:
Entity Framework 3.5 and 4.0
- Provider invariant name is specified in the connection string of application or web configuration file:
Java
xxxxxxxxxx
111
1<connectionStrings>
2<add name="NorthwindEntities"
3connectionString="metadata=res://*/NorthwindCustomerModel.csdl
4|res://*/NorthwindCustomerModel.ssdl
5|res://*/NorthwindCustomerModel.msl;
6provider=System.Data.EntityClient;
7provider connection string="
8Data Source=localhost;Initial Catalog=Northwind;user id= userid;
9password=password;MultipleActiveResultSets=True""
10providerName="System.Data.EntityClient"/>
11</connectionStrings>
- Change provider name to NCache Entity Framework Provider and also add the provider wrapper information in the connection string as shown below:
Java
xxxxxxxxxx
112
1<connectionStrings>
2<add name="NorthwindEntities"
3connectionString="metadata=res://*/NorthwindCustomerModel.csdl
4|res://*/NorthwindCustomerModel.ssdl
5|res://*/NorthwindCustomerModel.msl;
6provider=Alachisoft.Integrations.EntityFramework.CachingProvider;
7provider connection string="
8wrappedProvider=System.Data.SqlClient;
9Data Source=localhost;Initial Catalog=Northwind;user id= userid;
10password=password;MultipleActiveResultSets=True""
11providerName="System.Data.EntityClient"/>
12</connectionStrings>
- Also add the provider factory for the initialization of NCache Entity Framework Provider. The invariant attribute should be the same as the provider name in the connection string.
-
Java
xxxxxxxxxx
113
1<DbProviderFactories>
2<add name="EF Caching Data Provider"
3invariant="Alachisoft.Integrations.EntityFramework.
4CachingProvider"
5description="Caching Provider Wrapper"
6type="Alachisoft.NCache.Integrations.
7EntityFramework.EFCachingProviderFactory,
8Alachisoft.Integrations.EntityFramework.
9CachingProvider,
10Version=1.0.0.0,
11Culture=neutral,
12PublicKeyToken=cff5926ed6a53769"/>
13</DbProviderFactories>
Entity Framework 6.0
- Provider invariant name is also specified in the application (or web) configuration file:
XML
xxxxxxxxxx
1
1<entityFramework>
2<providers>
3<provider invariantName="System.Data.SqlClient"
4type="System.Data.Entity.SqlServer.SqlProviderServices,
5EntityFramework.SqlServer" />
6</providers>
7</entityFramework>
- Change invariant name to
EFCachingProviderServices
and type toAlachisoft.NCache.Integrations.EntityFramework.EFCachingProviderServices,
Alachisoft.Integrations.EntityFramework.CachingProvider
as shown below: -
XML
xxxxxxxxxx
1
1<entityFramework>
2<providers>
3<provider invariantName="EFCachingProviderServices"
4type="Alachisoft.NCache.Integrations.EntityFramework.EFCachingProviderServices,
5Alachisoft.Integrations.EntityFramework.CachingProvider" />
6</providers>
7</entityFramework>
Entity Framework 6.1
- Add an interceptor in provider section in the application (or web) configuration file:
XML
xxxxxxxxxx
111
1<entityFramework>
2<providers>
3<provider invariantName="System.Data.SqlClient"
4type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
5</providers>
67<interceptors>
8<interceptor type="Alachisoft.NCache.Integrations.EntityFramework.Caching.EFCommandInterceptor,
9Alachisoft.Integrations.EntityFramework.CachingProvider" />
10</interceptors>
11</entityFramework>
- The following information should be added in appSettings of
app.config/web.config
:Java
xxxxxxxxxx
1
12<appSettings> <add key = "app-id" value = "PersonNameApp2"/> <add key = "logging-level" value = "Debug"/> </appSettings>
- App-id: This will be the identifier for the current application. This ID will be used to read configurations from efcaching.ncconf
- Logging-level: Determine the logging level for the application. Our provider will log exceptions and errors only when the level is set to Error. When the level is set to Debug, both exceptions/errors and other detailed information will be logged. Nothing will be logged if the level is set to Off (default). Path at which log files will be generated: Default =<install-dir> <install-dir>/log-files/efcaching-logs/
- For applying the above changes, the application should be restarted after these changes are made
NOTE: App-id for efcaching.ncconf should be same as in application (app.config) otherwise it will prompt an error)
Alternative Method
Entity Framework 3.5 or 4.0
Apart from specifying the connection string in app.config/web.config, the connection can also be specified while creating ObjectContext
or EntityConnection
. While creating a connection string programmatically, the wrapper information must be included in a connection string. Here is how the connection string can be created and ObjectContext
or EntityConnection
can be initialized.
xxxxxxxxxx
try
{
SqlConnectionStringBuilder sqlConnBuilder = new SqlConnectionStringBuilder();
sqlConnBuilder.DataSource = "localhost";
sqlConnBuilder.InitialCatalog = "EFTestDB";
sqlConnBuilder.IntegratedSecurity = true;
string conString = sqlConnBuilder.ToString();
EntityConnectionStringBuilder efConnBuilder = new EntityConnectionStringBuilder();
efConnBuilder.Provider = "EFCachingProvider";
efConnBuilder.ProviderConnectionString = "wrappedProvider=System.Data.SqlClient;" + conString;
efConnBuilder.Metadata = "res:// /NorthwindCustomerModel.csdl|res:" + "// /NorthwindCustomerModel.ssdl|res:" +"// /NorthwindCustomerModel.msl;";
EntityConnection connection = new EntityConnection(efConnBuilder.ToString());
}
catch (Exception ex)
{
// handle exception
}
Entity Framework 6.0
Apart from specifying provider invariant in app.config/web.config, the provider invariant can be specified while initializing the configuration (class inheriting DbConfiguration). Here is how the provider invariant can be specified:
xxxxxxxxxx
try
{
this.SetProviderServices("EFCachingProviderServices", EFCachingProviderServices.Instance);
}
catch (Exception ex)
{
// handle exception
}
Entity Framework 6.1
Apart from specifying database interceptor in app.config/web.config, the database interceptor can be specified while initializing the configuration (class inheriting DbConfiguration). Here is how the interceptor can be specified:
xxxxxxxxxx
try
{
this.AddInterceptor(new EFCommandInterceptor());
}
catch (Exception ex)
{
// handle exception
}
Through API (6.0 and 6.1)
The user can now also cache results using an extension provided for IQueryable
.
- Specify the namespace
-
Java
xxxxxxxxxx
1
1using Alachisoft.NCache.Integrations.EntityFramework.Caching;
- Call cache method overloads now from
IQueryable
instance
xxxxxxxxxx
var students = from s in db.Students
select s;
students.Cache();
// results are not cached yet
foreach (Student student in students)
//results are cached when enumerator from query is iterated completely
{
//using student
}
Step 4: efcaching.ncconf Configurations
Changes required in "efcaching.ncconf".
- Efcaching.ncconf is placed on the following path: "Installeddirectory:/Program Files/NCache/config".
- Provider Configuration contains cache and caching policy-related information. Below are the changes required in efcaching.ncconf.
Java
xxxxxxxxxx
1
1<configuration>
2<app-config app-id = "PersonNameApp" mode = "analysis|caching">
- "Analysis" mode is used for monitoring the number of times each query executes and then it generates a report. The report contains the Query text and the call count for each query. This report can be used in Custom policy. No caching is done at this mode.
Java
xxxxxxxxxx
1
1<analysis-policy log-path = "" analysis-time = "1min" cache-enable-threshold = "1" default-expiration-type = "Sliding" default-expiration-time = "180sec" dbsyncdependency= "false"/>
- Log-path: Path at which analysis log files will be generated. Default = < install-dir > /log-files/efcaching-analysis-logs/
- For "Caching" mode, the wrapping provider will cache the results of all the specified queries. Both policies have their own specifications. Whenever an update is detected (either UPDATE, INSERT or DELETE) in a respective database, the provider invalidates affected cache entries by evicting all cached queries which were dependent on any of the updated tables.
Java
xxxxxxxxxx
1
1<cache-policy-configuration database = "none|sqlserver|oracle" cache-id = "mycache">
- For custom policy, it includes user-configurable list of queries that should be cached with their results. Only those query results will be cached for which the caching is enabled. You can specify custom caching policy for all queries.
Java
xxxxxxxxxx
1
1<!--sql-query = "SELECT [Extent1].[CustomerID] AS [CustomerID],= @param_0"-->
2<query>
3<cache-query query text="SELECT [Extent1].[OrderID] AS [OrderID], < @param_0"/>
4<cache-policy vary-by-cache-param="param_0" expiration-type="Sliding"
5enabled="True" expiration-time="180sec" dbsyncdependency="False"/>
6</query>
- In case of stored procedures, query text will be the name of a stored procedure, and there will be no default policy or database sync dependency. User can cache stored procedures result with expiration only, no database dependency is required here.
- In case of API Level Caching (supported in Entity Framework 6.0 and 6.1), you can cache query using extension method provided in the namespace
using Alachisoft.NCache.Integrations.EntityFramework.Caching;
and you can provide caching policy for API level caching in configuration file in the following tag:Java
xxxxxxxxxx
1
1<api-level-caching expiration-type="sliding|absolute" enable="True|False"
2expiration-time="120sec" dbsyncdependency="True|False">
Published at DZone with permission of Iqbal Khan. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments