Configuring Read-through Provider
The Read-through data source provider can be configured by using the NCache Management Center or Command Line Tools as explained below. You can also use these tools to remove Read-through when necessesary.
Important
For .NET, before deploying your .dll files, ensure you have the appropriate .NET Version installed as discussed in the NCache Installation Guide.
Using the NCache Management Center
Launch the NCache Management Center by browsing to http://localhost:8251 or
<server-ip>:8251
on Windows and Linux.In the left navigation bar, click on Clustered Caches or Local Caches, based on the cache to which the backing source will be configured. Against the cache name, click on View Details.
Make sure that the cache is stopped.
This opens up the detailed configuration page for the cache. Go to the Advanced Settings tab and click on Backing Source in the left bar.
Check the Enable Read-through box. Click on Add Provider.
- A new page Add Read Thru Provider opens up. Enter the Provider Name in the text box and then click on the Browse button to browse for assembly implementing the
IReadThruProvider
interface. Select the class name from the drop-down list.
Select the required Read-through Provider. You can also provide the values to your Read-through Provider class, if required. Just write the parameter name in the Parameter field and its value under the Value field.
Click OK.
The selected provider class will be listed in the Read-through Provider list in the Backing Source tab.
- Now deploy the Read-through Provider assembly along with its dependent assemblies, if any. Click on the Deploy Backing Source Provider button at the left bottom of the Backing Source tab.
Browse for required assemblies.
Select all the required assemblies and click Open.
After applying all the changes, click on Save Changes.
Using Command Line Tools
You can also use the Command Line Tools to configure Read-through, as discussed below.
Configure Read-through
The Add BackingSource cmdlet enables users to configure backing source (Read-through) providers for the specified cache. The following command will configure Reader1 Read-through Provider on demoCache.
Add-BackingSource -CacheName demoCache -AssemblyPath C:\ReadThru.dll -Class ReadThru.Reader -ProviderName MyReader -ReadThru
Remove Read-through
The Remove BackingSource cmdlet removes the pre-configured backing source providers (Read-through) from the cache or a specified server. The following command removes the pre-configured Read-through Provider named MyReader from demoCache.
See Also
Write-through Provider
Write-through Provider for Write-behind Operations
Deploy Providers
Add Test Data