<?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 Re: Application Performance Optimization in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796816#M1296523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;building on Christian's idea, try to replace IF_statements (nested IFs in particular) with PICK(MATCH()) functions. It keeps the whole thing much easier rgd. the bracketing (you open and close every line individually, so you don't have to worry much about where to close specific parts) -. and I believe it also enhances performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fact that your sheets take quite a lot of time to load points to the conclusion that you probably have some pretty complex charts or resource-intensive calculations to be done on the GUI.&lt;/P&gt;&lt;P&gt;Can you discern whether it is more on the script_layer or on the GUI that you do have issues? Does your data load in acceptable time?&lt;/P&gt;&lt;P&gt;Just test it locally and see which part(s) of your application are okay and which seem to be slow.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Feb 2015 15:36:52 GMT</pubDate>
    <dc:creator>datanibbler</dc:creator>
    <dc:date>2015-02-26T15:36:52Z</dc:date>
    <item>
      <title>Application Performance Optimization</title>
      <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796812#M1296515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some serious concerns over the performance of my application.&lt;/P&gt;&lt;P&gt;Below are some statistics to provide some insights:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Total size of the qvw = 5 GB&lt;/P&gt;&lt;P&gt;2. Total Users as of now = 10&lt;/P&gt;&lt;P&gt;3. Total RAM on Server = 112 GB&lt;/P&gt;&lt;P&gt;4. Total RAM Consumed when application is running and used by all the users = 60%&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. Average time taken for each selection in filters = 8 secs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;6. Average time taken for opening and loading of a new sheet = 15 secs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;7. Max. time taken for opening and loading of a sheet = 40 secs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;8. Total number of triggers in the application = 15&lt;/P&gt;&lt;P&gt;9. If conditions used in 20% of the expressions&lt;/P&gt;&lt;P&gt;10. No Macros used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe the performance of the application is not up to the mark.&lt;/P&gt;&lt;P&gt;What is the best way to debug the performance issues?&lt;/P&gt;&lt;P&gt;Let me know if any more information is required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Diwakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796812#M1296515</guid>
      <dc:creator>diwakarnahata</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Application Performance Optimization</title>
      <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796813#M1296518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usually the compression-rate of a qvw-file is 8...10-fold if loaded into RAM. For each user you should add 10%. Thus your above observation of 60% RAM-consumption is within range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question is alway, how may objects are active, when opening an application (and whether there are inital filters set). You should try to minimize or restrict the objects to show only xxx number of records in order to encourage the users to filter their data.&lt;/P&gt;&lt;P&gt;IF-conditions are sometimes problematic, especially when nested or when lots of distinct data to be analyzed. Would start here with a critical view. Might also be possible to precalculate some of these IF's in the script already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may check with .mem-file the consumption of RAM for individual objects, likewise you may check the last calculation-time under sheet-&amp;gt;properties-&amp;gt;objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 15:18:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796813#M1296518</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2015-02-26T15:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Application Performance Optimization</title>
      <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796814#M1296520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Peter mentioned, those IF statements can definitely eat up CPU especially in calculated dimensions.&amp;nbsp; One possible idea, perhaps you could use your IF statements in your load script as flags and then use the flags in set analysis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 15:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796814#M1296520</guid>
      <dc:creator />
      <dc:date>2015-02-26T15:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Application Performance Optimization</title>
      <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796815#M1296521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Performance depends on many things which are hard to guess without seeing your 5GB qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notwithstanding that could you share a screenshot of your data model ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 15:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796815#M1296521</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-26T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Application Performance Optimization</title>
      <link>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796816#M1296523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;building on Christian's idea, try to replace IF_statements (nested IFs in particular) with PICK(MATCH()) functions. It keeps the whole thing much easier rgd. the bracketing (you open and close every line individually, so you don't have to worry much about where to close specific parts) -. and I believe it also enhances performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fact that your sheets take quite a lot of time to load points to the conclusion that you probably have some pretty complex charts or resource-intensive calculations to be done on the GUI.&lt;/P&gt;&lt;P&gt;Can you discern whether it is more on the script_layer or on the GUI that you do have issues? Does your data load in acceptable time?&lt;/P&gt;&lt;P&gt;Just test it locally and see which part(s) of your application are okay and which seem to be slow.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 15:36:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Application-Performance-Optimization/m-p/796816#M1296523</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-26T15:36:52Z</dc:date>
    </item>
  </channel>
</rss>

