[XAF] How to improve the application's performance

https://www.devexpress.com/Support/Center/Question/Details/T148978

The best way to determine the precise cause of a performance problem is to profile your application using a specialized performance profiler tool, e.g., AQTime, ANTS Performance Profiler (if you are developing a Web app, then additionally profile the client side operation using the developer tools of your favorite browser (IEChrome)).
Such tools show what methods take the most time to execute, and in conjunction with queries profiling, this allows debugging practically all performance issues.
If there are issues with memory consumption in your application, follow the suggestions from our About profiling memory leaks blog post.

In addition, check this list of the most frequent causes of performance issues and make sure that you are following all the advice from this list in your application.

General issues:

1. The application or a certain View is loaded slowly for the first time, but subsequent loads are performed significantly faster.

Solution: The majority of this time is likely required to load additional assemblies or compile MSIL code. When the issue occurs in a certain View, this View likely uses a control that is not used by other Views, e.g., SchedulerControl, XtraReport. To improve performance in this case, use NGEN. Refer to the Why does my code take longer to execute the first time it‘s run? article for additional information.

2. A View is painted slowly, and the application freezes when it is necessary to redraw this View.

Solution: Check whether any exceptions are thrown when the View is displayed. Even if these exceptions are handled and do not break the application‘s execution, a lot of exceptions may cause noticeable freezes, especially during debugging. An example of such a situation is when there is a mistake in the column‘s display format definition. In this case, a FormatException will be thrown for each cell. To see these exceptions, enable Common Language Runtime Exceptions and disable the Just My Code option in Visual Studio. See How to: Break When an Exception is Thrown for more details.

3. The ListVIew is loaded slowly when the database table contains a lot of records (e.g., more than 100,000).

Solution 1: If you do not need to show all these records in a single View, apply a server-side filter to your ListView - see Filter List Views.

Solution 2: Enable partial data loading - Server Mode - to load records dynamically when the ListView’s control requests them. To do this, open the Model Editor, find the ListView model in the Views node and set its DataAccessMode to Server.

Issues caused by your persistent classes‘ specifics:

To debug such issues, check what queries are performed while loading data from the database. Here are ways to do this:

- Using an SQL profiling tool. You can either use a third-party tool like SQL Server Profiler, or, if you are using XPO for your data layer, you can use the XPO Profiler.

- If you are using XPO, you can enable the queries logging. To do this, open the application‘s configuration file and uncomment the XPO diagnostics switch:

[XML]Open in popup window

<system.diagnostics>
  <switches>
    <!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. -->
    <add name="eXpressAppFramework" value="3" />
    <add name="XPO" value="3" />
  </switches>
</system.diagnostics>

Queries will be displayed in the Output window and written to the eXpressAppFramework.log file (see Log Files).

After configuring one of these approaches, load the problematic ListView and check the logged queries. If their summary execution time takes the majority of the ListView‘s loading time, query optimization is required. Here are the most frequent cases:

4. Server-side filtering, sorting or grouping is performed slowly because the database table does not contain the necessary indices.

Solution: Check what columns are involved in the WHERE, ORDER BY and GROUP BY operations and add indices for them. To add an index using XPO, use the Indexed attribute.

5. The main SELECT query takes a long time to execute, although the result does not contain a lot of objects. This may occur if each persistent object selected by this query includes a lot of data, i.e., contains images, long texts, references to large persistent objects, etc.

Solution1: Set the ListView‘s DataAccessMode to DataView to load only properties displayed in this ListView (be default, all properties are loaded).

Solution2: Make large properties delayed, as described in the Delayed Loading topic. Note that delayed properties should not be displayed in the ListView, otherwise you will have case 7.1 (see below). If you need to display large reference properties in the ListView, use the solution from case 6.

6. A persistent class contains a lot of reference properties, and additional queries that load referenced objects are executed for a significant time.
Solution: Include referenced objects to the main SELECT query by applying the ExplicitLoading attribute to the corresponding properties.

Note that normally, all referenced objects of the same type are loaded through a single additional query for all records. If additional queries are performed for each record, see case 7.

7.
 XPO or Entity Framework executes a separate query or several queries for each record.

Solution: See what additional queries are executed and analyze your business class to understand what code causes this. Here are examples of such cases:

7.1. Additional queries load a property of the current business class that is not loaded in the main SELECT query.

Solution: This property is likely delayed, and there is a ListView column that displays it. In this case, either do not use delayed loading for this property, or remove the ListView column (see Change Field Layout and Visibility in a List View). The same issue will occur if the delayed property is accessed in code while loading objects, e.g., in another property‘s getter, or in the OnLoaded method.

7.2. Additional queries select data from other tables.

Solution 1: Check whether your persistent class executes the code that loads other persistent objects (e.g., creates an XPCollection or uses a Session‘s methods like Session.FindObject and Session.GetObjectByKey) in property getters or in the OnLoaded method. In this case, either call this method in another place, e.g., in a getter of a property that is not displayed in the ListView, or remove the problematic property from the ListView.

Solution 2: Check whether there are calculated properties implemented through the PersistentAlias attribute that use collection properties or join operands in their expression, e.g., "Orders.Sum(Amount)". It is important to remember that to get values of calculated properties, the getter that calls the EvaluateAlias method is called, and the EvaluateAlias method evaluates the specified expression on the client side. So, if the PersistentAlias expression contains a collection property, this collection will be loaded when calculating the value. The easiest way to resolve this issue is to hide such properties from the ListView. Alternatively, you can improve the performance of these properties by pre-fetching associated collections using the Session.PreFetch method. In this case, all associated objects will be loaded in a single query. See an example here: How do I prefetch related details data to increase performance for calculated fields.

Solution 3:  Change the ListView‘s DataAccessMode to DataView. In this case, queries that can be executed on the server side (PersistentAlias expressions) will be included to the main SELECT query, and client-side code that loads data will not be taken into account.

8. The applications periodically perform the same queries that return the same database records.

Solution: If these records are changed rarely, it makes sense to enable caching at the Data Layer level to prevent the duplicate requests, as described in the How to use XPO caching in XAF topic.

IMPORTANT NOTES
This list does not cover all possible cases. There are issues related to a specific database provider or caused by specifics of a legacy database,  scenario-specific issues, etc. A general suggestion is to find out how the query or the database table can be modified to improve performance, and then try to modify your persistent objects accordingly.

If none of these suggestions are helpful, feel free to contact our Support Team and provide the profiling logs for analysis.

[XAF] How to improve the application's performance

时间: 2024-07-30 20:19:39

[XAF] How to improve the application's performance的相关文章

WebSphere Application Server Performance Tuning Toolkit

WebSphere? Application Server Performance Tuning Toolkit 是一款基于 Eclipse 的智能工具,旨在帮助用户通过使用数据收集.数据分析和统计数据推断技术来调优 WebSphere Application Server 的性能.其目的是帮助用户查找瓶颈,并适当调优应用程序. 背景知识 随着基于 Java EE 的企业级多层架构应用程序的大范围部署,出现得越来越多的性能问题,而且难以诊断.多层架构使得性能问题难以定位,而且要花费更多的时间和精

[转]How to Improve Entity Framework Add Performance?

本文转自:http://entityframework.net/improve-ef-add-performance When you overuse the Add() method for multiple entities, your application suffers from performance issues. 1 using (var ctx = new CustomerContext()) 2 { 3 foreach(var line in lines) 4 { 5 var

BerkeleyDB java的简单使用

关于BerkeleyDB的有点和好处,列在下面 JE offers the following major features: Large database support. JE databases efficiently scale from one to millions of records. The size of your JE databases are likely to be limited more by hardware resources than by any limi

MVC学习系列14--Bundling And Minification【捆绑和压缩】--翻译国外大牛的文章

这个系列是,基础学习系列的最后一部分,这里,我打算翻译一篇国外的技术文章结束这个基础部分的学习:后面打算继续写深入学习MVC系列的文章,之所以要写博客,我个人觉得,做技术的,首先得要懂得分享,说不定你自己以为正确的东西,存在瑕疵,分享出来,大家也可以互相进步.这样整个生态圈也会越来越好.不是么?   好了,闲话扯远了,下面开始正题吧,一下是英文和中文对照,翻译的不好,请见谅. This article introduces how to improve ASP.NET MVC Applicati

Application Architecture Determines Application Performance

? Application Architecture Determines Application Performance Randy Stafford AppliCATion ARCHiTECTuRE dETERMinES application performance. That might seem rather obvious, but real-world experience shows that it's not. For example, software architects

Java Performance Optimization Tools and Techniques for Turbocharged Apps--reference

Java Performance Optimization by: Pierre-Hugues Charbonneau reference:http://refcardz.dzone.com/refcardz/java-performance-optimization Java is among the most widely used programming languages in the software development world today. Java applications

Top Things to Consider When Troubleshooting Complex Application Issues

http://blogs.msdn.com/b/debuggingtoolbox/archive/2011/10/03/top-things-to-consider-when-troubleshooting-complex-application-issues.aspx 1- For reactive incidents: “Bring the engineer onsite because it is going to be easier to isolate the problem.” Th

Django performance

Reference: https://impythonist.wordpress.com/2016/02/21/building-high-performance-django-systems/ The main motto of Django web framework is: The web framework for perfectionists with deadlines It is true. Django always gives a polished product within

14.1 Understanding Index Performance 了解索引性能

14.1.1 Tuning the Logical Structure(优化逻辑结构) 不管查询是否使用,SQL引擎必须继续维护一个表上定义的所有索引,在写操作比较频繁的应用中,索引维护工作可能会占用大量的CPU和I/O资源,所以,不要建立不必要的索引. 为了最优化性能,删除不必要的索引.在你的数据库执行有代表性的工作量时,使用ALTER INDEX MONITORINGUSAGE来监测索引的使用情况,这个监控功能记录索引是否被使用,如果你发现某索引未被使用就可以删掉它.注意要确保你是在数据库执