NHibernate - 性能分析器



在本章中,我们将了解如何从数据库中检索、更新、创建和删除所有记录,以及这些查询是如何执行的?

为了理解所有这些,我们可以在配置中简单地添加一个选项,该选项将 SQL 记录到控制台。以下是可以记录 SQL 查询的简单语句:

x.LogSqlInConsole = true;

现在,我们在 NHibernateDemoDB 数据库的 student 表中有两条记录。让我们检索数据库中的所有记录,如下面的代码所示。

using NHibernate.Cfg; 
using NHibernate.Dialect; 
using NHibernate.Driver; 

using System; 
using System.Linq; 
using System.Reflection;

namespace NHibernateDemoApp { 

   class Program { 
      
      static void Main(string[] args) { 
         var cfg = new Configuration();
			
         String Data Source = asia13797\\sqlexpress;
         String Initial Catalog = NHibernateDemoDB;
         String Integrated Security = True;
         String Connect Timeout = 15;
         String Encrypt = False;
         String TrustServerCertificate = False;
         String ApplicationIntent = ReadWrite;
         String MultiSubnetFailover = False;			
         
         cfg.DataBaseIntegration(x = > { x.ConnectionString = "Data Source + 
            Initial Catalog + Integrated Security + Connect Timeout + Encrypt +
            TrustServerCertificate + ApplicationIntent + MultiSubnetFailover"; 
            
            x.Driver<SqlClientDriver>(); 
            x.Dialect<MsSql2008Dialect>(); 
            x.LogSqlInConsole = true; 
         }); 
      
         cfg.AddAssembly(Assembly.GetExecutingAssembly()); 
         var sefact = cfg.BuildSessionFactory();
      
         using (var session = sefact.OpenSession()) { 
         
            using (var tx = session.BeginTransaction()) { 
               Console.WriteLine("\nFetch the complete list again\n");
               var students = session.CreateCriteria<Student>().List<Student>(); 
      
               foreach (var student in students) { 
                  Console.WriteLine("{0} \t{1} \t{2}", student.ID, student.FirstMidName,
                     student.LastName); 
               } 
               
               tx.Commit(); 
            } 
				
            Console.ReadLine(); 
         } 
      } 
   } 
}

因此,让我们再次运行此应用程序,您将看到以下输出:

NHibernate: SELECT this_.ID as ID0_0_, this_.LastName as LastName0_0_,
   this_.FirstMidName as FirstMid3_0_0_ FROM Student this_

Fetch the complete list again

3 Allan Bommer
4 Jerry Lewis

如您所见,发送到数据库的select 子句,它实际上类似于子句,它将检索 ID、FirstMidName 和 LastName。因此,所有这些都将发送到数据库并在那里进行处理,而不是将大量记录带回您的服务器并在服务器端进行处理。

NHibernate 性能分析器

查看这些结果的另一种方法是使用 NHibernate 性能分析器。NHibernate 性能分析器是一个商业工具,但它对于处理 NHibernate 应用程序非常有用。您可以轻松地从 NuGet 将 NHibernate 性能分析器安装到您的应用程序中。

让我们从“工具”菜单中的“NuGet 包管理器”→“程序包管理器控制台”进入 NuGet 包管理器控制台。它将打开“程序包管理器控制台”窗口。输入以下命令并按 Enter 键。

PM> install-package NHibernateProfiler

它将安装 NHibernate 性能分析器所需的所有二进制文件,一旦成功安装,您将看到以下消息。

NHibernate Profiler

您还将看到 NHibernate 性能分析器已启动,一旦安装完成。它需要许可证才能使用,但出于演示目的,我们可以使用 NHibernate 性能分析器的 30 天试用版。

现在,NHibernate 性能分析器已针对 Web 应用程序进行了优化,您将看到它在解决方案资源管理器中添加了App_Start 文件夹。为了使所有这些都保持简单,请删除 App_Start 文件夹,并且您还会注意到在 Program 类中的 Main 方法开头添加了一个语句。

App_Start.NHibernateProfilerBootstrapper.PreStart();

也请删除此语句,只需添加一个简单的调用NHibernateProfiler.Initialize,如下面的代码所示。

using HibernatingRhinos.Profiler.Appender.NHibernate; 
using NHibernate.Cfg; 
using NHibernate.Dialect; 
using NHibernate.Driver; 

using System; 
using System.Linq; 
using System.Reflection;

namespace NHibernateDemoApp { 
   
   class Program { 
	
      static void Main(string[] args) { 
		
         NHibernateProfiler.Initialize(); 
         var cfg = new Configuration();
			
         String Data Source = asia13797\\sqlexpress;
         String Initial Catalog = NHibernateDemoDB;
         String Integrated Security = True;
         String Connect Timeout = 15;
         String Encrypt = False;
         String TrustServerCertificate = False;
         String ApplicationIntent = ReadWrite;
         String MultiSubnetFailover = False;			
         
         cfg.DataBaseIntegration(x = > { x.ConnectionString = "Data Source + 
            Initial Catalog + Integrated Security + Connect Timeout + Encrypt +
            TrustServerCertificate + ApplicationIntent + MultiSubnetFailover";
				
            x.Driver<SqlClientDriver>(); 
            x.Dialect<MsSql2008Dialect>(); 
            x.LogSqlInConsole = true; 
         }); 

         cfg.AddAssembly(Assembly.GetExecutingAssembly()); 
         var sefact = cfg.BuildSessionFactory(); 
         
         using (var session = sefact.OpenSession()) { 
            
            using (var tx = session.BeginTransaction()){ 
               var students = session.CreateCriteria<Student>().List<Student>(); 
               Console.WriteLine("\nFetch the complete list again\n");
               
               foreach (var student in students) { 
                  Console.WriteLine("{0} \t{1} \t{2}", student.ID, student.FirstMidName,
                     student.LastName); 
               } 
					
               tx.Commit(); 
            } 
				
            Console.ReadLine(); 
         } 
      } 
   
   }
}

现在,当您运行应用程序时,它将数据发送到 NHibernate 性能分析器应用程序。

NHibernate Profiler Application

您可以在此处看到,我们有一个很好的显示,显示我们已启动事务,SQL 在数据库中以一种很好的格式执行的操作。

因此,这对于确定 NHibernate 应用程序内部到底发生了什么非常有用。一旦应用程序达到一定的复杂程度,它就会变得非常有用,在这种情况下,您需要类似于 SQL Profiler 的工具,但同时还要了解 NHibernate。

广告