<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article Qlik Web Connectors - Clearing Cached Data in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Web-Connectors-Clearing-Cached-Data/ta-p/1714342</link>
    <description>&lt;P&gt;&lt;BR /&gt;Some connectors cache data locally, this has the benefit of:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Vastly improved load time after initial download of data.&lt;/LI&gt;
&lt;LI&gt;Reduced number of calls to API (which often have throttle and usage limits)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Clearing the cache in the UI&lt;/H3&gt;
&lt;P&gt;?&lt;SPAN style="font-size: 13px;"&gt;If you wish to delete the data cached for a connector manually&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Open Qlik Web Connectors in your browser (&lt;FONT face="courier new,courier"&gt;&lt;A href="http://localhost:5555/web" target="_blank"&gt;http://localhost:5555/web&lt;/A&gt;&lt;/FONT&gt;)&lt;/LI&gt;
&lt;LI&gt;Select the connector and go to the '&lt;STRONG&gt;Settings&lt;/STRONG&gt;' tab for the connector&lt;/LI&gt;
&lt;LI&gt;Click the '&lt;STRONG&gt;Clear Cached Data&lt;/STRONG&gt;' button as highlighted below.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303a.png" style="width: 859px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55917i77C650FC2E33BEB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303a.png" alt="000020303a.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Clearing the cache using load script&lt;/H3&gt;
&lt;P&gt;If you wish to clear the cache in your load script you may do so with the following script:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=CONNECTOR_NAME&amp;amp;clearcache=true" target="_blank"&gt;http://localhost:5555/data?connectorID=CONNECTOR_NAME&amp;amp;clearcache=true&lt;/A&gt;]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;You just need to replace CONNECTOR_NAME with the the right value, this will be the value present in the same place in the url for the other load statements you use for this connector.&lt;BR /&gt;&lt;BR /&gt;So for example for the Twitter Connector&amp;nbsp;you could place this as the first statement in your load script, perhaps running it conditionally based on the number of days since your last reload.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=" target="_blank"&gt;http://localhost:5555/data?connectorID=&lt;/A&gt;&lt;STRONG&gt;TwitterConnector&lt;/STRONG&gt;&amp;amp;clearcache=true]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;CODE&gt; &lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Advanced Arguments&lt;/H3&gt;
&lt;H4&gt;Pattern Matching&lt;/H4&gt;
&lt;P&gt;Some connectors support an additional paramter:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;amp;clearcache_searchPattern=&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Here you can pass in a string with * wildcards to further specify which cached items are to be deleted. Currently only the&amp;nbsp;Facebook for Pages Connector&amp;nbsp;and&amp;nbsp;Facebook Insights Connector&amp;nbsp;supports this - typically you would use &lt;FONT face="courier new,courier"&gt;'clearcache_searchPattern=[pagename_or_id]'&lt;/FONT&gt;. So for example to clear all the cached items for the QlikView Facebook page simply use.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=" target="_blank"&gt;http://localhost:5555/data?connectorID=&lt;/A&gt;&lt;STRONG&gt;FacebookFanPagesConnector&lt;/STRONG&gt;&amp;amp;clearcache=true&amp;amp;clearcache_searchPattern=&lt;STRONG&gt;qlikview_*&lt;/STRONG&gt;]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;CODE&gt; &lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Only Deleting Items Older Than X Hours&lt;/H4&gt;
&lt;P&gt;You can use the parameter:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;amp;clearcache_ageInHours=X&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Where X is an integer greater than or equal to zero. If this is specified, then only items older than this will be deleted.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Changing the Cache Directory&lt;/H3&gt;
&lt;P&gt;By default the Qlik Web Connectors cache will be contained in a sub-directory under QlikWebConnectors.exe. For example if Qlik Web Connectors is running in the folder:&amp;nbsp;&lt;BR /&gt;-&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;F:\Qlik Web Connectors\&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;the cache for each connector will be located at:&lt;BR /&gt;&lt;STRONG&gt;- &lt;FONT face="courier new,courier"&gt;F:\Qlik Web Connectors\App_Data\[User]\[CONNECTOR_NAME]_Cache&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;where [User] is the GUID for the user logged in when setting up the connector (Default GUID for Admin is DEFAULT0-000-000-000-00000000000)&lt;BR /&gt;&lt;BR /&gt;As an example, results from the sentiment analyzer will be cached at:&lt;BR /&gt;&lt;STRONG&gt;- &lt;FONT face="courier new,courier"&gt;F:\Qlik Web Connectors\App_Data\DEFAULT0-000-000-000-00000000000\SentimentAnalyser_Cache&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;You can change the directory where the cache is installed by editing &lt;FONT face="courier new,courier"&gt;deploy.config&lt;/FONT&gt; and change the &lt;FONT face="courier new,courier"&gt;FileBasedCacheProvider&lt;/FONT&gt; setting:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;lt;Cache provider="FileBasedCacheProvider" config="{app_root}/App_Data/{user_id}/{connector_id}_Cache/"&amp;gt;&amp;lt;/Cache&amp;gt;?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Compressing the Cache Folder&lt;/H3&gt;
&lt;P&gt;A large number of files can accumulate in the cache directory and for this reason we would recommend configuring Windows to compress it. To do this right click on your App_Data folder and select properties:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303b.png" style="width: 368px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55918iC82508084F32D6A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303b.png" alt="000020303b.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The click the 'Advanced' button:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303c.png" style="width: 358px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55919i50DC060693EDF542/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303c.png" alt="000020303c.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then check the 'Compress' option:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303d.png" style="width: 398px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55920i21FF13066DDBB682/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303d.png" alt="000020303d.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;You should then confirm the following:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303e.png" style="width: 406px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55921iB5403BA32C36B49F/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303e.png" alt="000020303e.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should then see the folder highlighted in blue illustrating that it is compressed.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 17:36:48 GMT</pubDate>
    <dc:creator>Bjorn_Wedbratt</dc:creator>
    <dc:date>2021-05-28T17:36:48Z</dc:date>
    <item>
      <title>Qlik Web Connectors - Clearing Cached Data</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Web-Connectors-Clearing-Cached-Data/ta-p/1714342</link>
      <description>&lt;P&gt;&lt;BR /&gt;Some connectors cache data locally, this has the benefit of:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Vastly improved load time after initial download of data.&lt;/LI&gt;
&lt;LI&gt;Reduced number of calls to API (which often have throttle and usage limits)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Clearing the cache in the UI&lt;/H3&gt;
&lt;P&gt;?&lt;SPAN style="font-size: 13px;"&gt;If you wish to delete the data cached for a connector manually&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Open Qlik Web Connectors in your browser (&lt;FONT face="courier new,courier"&gt;&lt;A href="http://localhost:5555/web" target="_blank"&gt;http://localhost:5555/web&lt;/A&gt;&lt;/FONT&gt;)&lt;/LI&gt;
&lt;LI&gt;Select the connector and go to the '&lt;STRONG&gt;Settings&lt;/STRONG&gt;' tab for the connector&lt;/LI&gt;
&lt;LI&gt;Click the '&lt;STRONG&gt;Clear Cached Data&lt;/STRONG&gt;' button as highlighted below.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303a.png" style="width: 859px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55917i77C650FC2E33BEB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303a.png" alt="000020303a.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Clearing the cache using load script&lt;/H3&gt;
&lt;P&gt;If you wish to clear the cache in your load script you may do so with the following script:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=CONNECTOR_NAME&amp;amp;clearcache=true" target="_blank"&gt;http://localhost:5555/data?connectorID=CONNECTOR_NAME&amp;amp;clearcache=true&lt;/A&gt;]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;You just need to replace CONNECTOR_NAME with the the right value, this will be the value present in the same place in the url for the other load statements you use for this connector.&lt;BR /&gt;&lt;BR /&gt;So for example for the Twitter Connector&amp;nbsp;you could place this as the first statement in your load script, perhaps running it conditionally based on the number of days since your last reload.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=" target="_blank"&gt;http://localhost:5555/data?connectorID=&lt;/A&gt;&lt;STRONG&gt;TwitterConnector&lt;/STRONG&gt;&amp;amp;clearcache=true]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;CODE&gt; &lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Advanced Arguments&lt;/H3&gt;
&lt;H4&gt;Pattern Matching&lt;/H4&gt;
&lt;P&gt;Some connectors support an additional paramter:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;amp;clearcache_searchPattern=&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Here you can pass in a string with * wildcards to further specify which cached items are to be deleted. Currently only the&amp;nbsp;Facebook for Pages Connector&amp;nbsp;and&amp;nbsp;Facebook Insights Connector&amp;nbsp;supports this - typically you would use &lt;FONT face="courier new,courier"&gt;'clearcache_searchPattern=[pagename_or_id]'&lt;/FONT&gt;. So for example to clear all the cached items for the QlikView Facebook page simply use.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;&lt;CODE&gt;ClearCache:&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;LOAD [Qlik Web Connectors_ClearCache_Result],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_SearchPattern],&amp;nbsp;&lt;BR /&gt;			&amp;nbsp; &amp;nbsp; &amp;nbsp;[Qlik Web Connectors_ClearCache_NoItemsDeleted]&lt;BR /&gt;			FROM&lt;BR /&gt;			[&lt;A href="http://localhost:5555/data?connectorID=" target="_blank"&gt;http://localhost:5555/data?connectorID=&lt;/A&gt;&lt;STRONG&gt;FacebookFanPagesConnector&lt;/STRONG&gt;&amp;amp;clearcache=true&amp;amp;clearcache_searchPattern=&lt;STRONG&gt;qlikview_*&lt;/STRONG&gt;]&lt;BR /&gt;			(txt, utf8, embedded labels, delimiter is '\t', msq);&lt;/CODE&gt;&lt;CODE&gt; &lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Only Deleting Items Older Than X Hours&lt;/H4&gt;
&lt;P&gt;You can use the parameter:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;amp;clearcache_ageInHours=X&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Where X is an integer greater than or equal to zero. If this is specified, then only items older than this will be deleted.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Changing the Cache Directory&lt;/H3&gt;
&lt;P&gt;By default the Qlik Web Connectors cache will be contained in a sub-directory under QlikWebConnectors.exe. For example if Qlik Web Connectors is running in the folder:&amp;nbsp;&lt;BR /&gt;-&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;F:\Qlik Web Connectors\&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;the cache for each connector will be located at:&lt;BR /&gt;&lt;STRONG&gt;- &lt;FONT face="courier new,courier"&gt;F:\Qlik Web Connectors\App_Data\[User]\[CONNECTOR_NAME]_Cache&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;where [User] is the GUID for the user logged in when setting up the connector (Default GUID for Admin is DEFAULT0-000-000-000-00000000000)&lt;BR /&gt;&lt;BR /&gt;As an example, results from the sentiment analyzer will be cached at:&lt;BR /&gt;&lt;STRONG&gt;- &lt;FONT face="courier new,courier"&gt;F:\Qlik Web Connectors\App_Data\DEFAULT0-000-000-000-00000000000\SentimentAnalyser_Cache&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;You can change the directory where the cache is installed by editing &lt;FONT face="courier new,courier"&gt;deploy.config&lt;/FONT&gt; and change the &lt;FONT face="courier new,courier"&gt;FileBasedCacheProvider&lt;/FONT&gt; setting:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;lt;Cache provider="FileBasedCacheProvider" config="{app_root}/App_Data/{user_id}/{connector_id}_Cache/"&amp;gt;&amp;lt;/Cache&amp;gt;?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Compressing the Cache Folder&lt;/H3&gt;
&lt;P&gt;A large number of files can accumulate in the cache directory and for this reason we would recommend configuring Windows to compress it. To do this right click on your App_Data folder and select properties:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303b.png" style="width: 368px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55918iC82508084F32D6A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303b.png" alt="000020303b.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The click the 'Advanced' button:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303c.png" style="width: 358px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55919i50DC060693EDF542/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303c.png" alt="000020303c.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then check the 'Compress' option:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303d.png" style="width: 398px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55920i21FF13066DDBB682/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303d.png" alt="000020303d.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;You should then confirm the following:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="000020303e.png" style="width: 406px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55921iB5403BA32C36B49F/image-size/large?v=v2&amp;amp;px=999" role="button" title="000020303e.png" alt="000020303e.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should then see the folder highlighted in blue illustrating that it is compressed.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 17:36:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Web-Connectors-Clearing-Cached-Data/ta-p/1714342</guid>
      <dc:creator>Bjorn_Wedbratt</dc:creator>
      <dc:date>2021-05-28T17:36:48Z</dc:date>
    </item>
  </channel>
</rss>

