<?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>topic Cache mechanism in Embedded Report in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/491299#M15053</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I noticed that report shown in&amp;nbsp;&lt;A href="https://app.powerbi.com" target="_blank"&gt;https://app.powerbi.com&lt;/A&gt; have some cache mechanism when the user open it for the 2nd time and so on. Making it faster to load the report.&lt;/P&gt;&lt;P&gt;Can the Embedded report have the same user experience for this?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Aug 2018 09:55:38 GMT</pubDate>
    <dc:creator>eddywijaya</dc:creator>
    <dc:date>2018-08-16T09:55:38Z</dc:date>
    <item>
      <title>Cache mechanism in Embedded Report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/491299#M15053</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I noticed that report shown in&amp;nbsp;&lt;A href="https://app.powerbi.com" target="_blank"&gt;https://app.powerbi.com&lt;/A&gt; have some cache mechanism when the user open it for the 2nd time and so on. Making it faster to load the report.&lt;/P&gt;&lt;P&gt;Can the Embedded report have the same user experience for this?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Aug 2018 09:55:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/491299#M15053</guid>
      <dc:creator>eddywijaya</dc:creator>
      <dc:date>2018-08-16T09:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cache mechanism in Embedded Report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/492334#M15078</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/57263"&gt;@eddywijaya&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer to&amp;nbsp;&lt;A href="https://github.com/Microsoft/PowerBI-JavaScript/wiki/Phased-Embedding-API#preload-warm-start" target="_self"&gt;PowerBI-JavaScript/wiki/Phased-Embedding-API#preload-warm-start&lt;/A&gt;. You can try it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Dale&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2018 07:22:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/492334#M15078</guid>
      <dc:creator>v-jiascu-msft</dc:creator>
      <dc:date>2018-08-17T07:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Cache mechanism in Embedded Report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/497235#M15223</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/28904"&gt;@v-jiascu-msft&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your reply, I have tried your solution and it considerably faster now.&lt;/P&gt;&lt;P&gt;But I applied (pre-defined) filter in my embedded report&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like this :&lt;/P&gt;&lt;PRE&gt;var  MyFilter = {
    $schema: "http://powerbi.com/product/schema#basic",
    target: {
        table: "Table1",
        column: "Column1"
    },
    operator: "Contains",
    values: "1234"              
}

report.on("loaded", function() {
    report.setFilters([MyFilter]).catch
    (errors =&amp;gt; {console.log(errors)});
});&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I tried to do the same with on('preload') but&amp;nbsp;the data shown&amp;nbsp;is not filtered&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 09:55:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/497235#M15223</guid>
      <dc:creator>eddywijaya</dc:creator>
      <dc:date>2018-08-23T09:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cache mechanism in Embedded Report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/497816#M15260</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/57263"&gt;@eddywijaya&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm afraid Preload wouldn't work with filters. Because it only requires a base URL.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;&amp;gt;This function only requires the type of embedded entity, and a base URL for PowerBI Embedded, i.e. embed URLs without any specific URL parameters such as reportId, groupId etc.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Dale&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 00:48:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cache-mechanism-in-Embedded-Report/m-p/497816#M15260</guid>
      <dc:creator>v-jiascu-msft</dc:creator>
      <dc:date>2018-08-24T00:48:04Z</dc:date>
    </item>
  </channel>
</rss>

