Hi,
I was able to cache the data in the external database using Partial Cache mode over the view following below steps:
* Configure partial cache mode over the view by navigating to Options > Cache tab in the view.
* If required, select "Match exact queries only" option and save the view.
* Publish the view as Rest web services.
* Save and deploy the published web services.
* Now, when I access the web service from the browser and when I click on the view, the results will be displayed. At the same time, data will be loaded in cache database.
Please note that when you select Explicit Loads option under partial cache, you must load the cache manually using the Context clause with the below parameters:
```
‘cache_preload’ = ‘true’
‘cache_wait_for_load’=’true’
```
**For Example:**
`Select * from <view_name> where condition CONTEXT(‘cache_preload’ = ‘true’, ‘cache_wait_for_load’=’true’)`
For more details about functionality of partial cache, you can refer to [Partial Mode](https://community.denodo.com/docs/html/browse/7.0/vdp/administration/cache_module/cache_modes/partial_mode#explicit-loads) section of the Virtual DataPort Administration Guide which explains in detail about different cache options with examples.
Hope this helps!