1

您好,我在 WPF 应用程序中使用 Fluent Nhibernate 和 SQLite。
Fluent Nhibernate 版本是“fluentnhibernate-NH3.1-1.2”,Sqlite 版本是“1.0.79”我的应用程序配置是

<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="System.Data.SQLite" publicKeyToken="DB937BC2D44FF139" culture="neutral"/>        
    <bindingRedirect oldVersion="0.0.0.0-1.0.79.0" newVersion="1.0.79.0"/>
  </dependentAssembly>
</assemblyBinding>

*问题是他们处理非常慢的事务处理 3000 个事务需要 10 分钟才能完成 * 我使用 Journal_mode = off 并且效果很好但是当我尝试执行 *急切加载 * 500 kb 数据需要 5 分钟。

4

1 回答 1

1

我终于找到了解决方案,在会话工厂构建器方法和 builschema 方法的配置中,有一行代码我不得不把它变成红色:showsql 指令是减慢进程的一条,现在我的应用程序能够进行 72000 次插入每秒

于 2012-07-23T15:13:09.723 回答