MVC JqGrid Loading Process时间解决方案
MVC JqGrid Loading Process time solution
可能是什么原因导致Loading...加载jqgrid数据需要时间。排序、查看所有记录和转到下一页(寻呼机加载下一页)很慢。
我正在使用 IQueryable 创建一个 SQL 查询来加载数据,其中包含 Select 语句与 Union Joining 所有查询,并且所有查询都具有内部联接的 buncg。
Select Statement
{
Query with Inner Joins and where clauses
}
Union Select Statement
{
Query with Inner Joins and where clauses
}
Union Select Statement
{
Query with Inner Joins and where clauses
}
请指导我找到更好的解决方案来更快地加载数据。
有很多不同的方法可以做到这一点。
为所有 select 语句创建一个不同的临时文件夹并尝试
运行 使用内连接查询。
另一种是尝试增加服务器的内存。我有同样的问题
这也有帮助。
还要检查您在查询中添加的任何语句是否不需要
然后删除它。
主要的东西 创建索引。
可能是什么原因导致Loading...加载jqgrid数据需要时间。排序、查看所有记录和转到下一页(寻呼机加载下一页)很慢。
我正在使用 IQueryable 创建一个 SQL 查询来加载数据,其中包含 Select 语句与 Union Joining 所有查询,并且所有查询都具有内部联接的 buncg。
Select Statement
{
Query with Inner Joins and where clauses
}
Union Select Statement
{
Query with Inner Joins and where clauses
}
Union Select Statement
{
Query with Inner Joins and where clauses
}
请指导我找到更好的解决方案来更快地加载数据。
有很多不同的方法可以做到这一点。
为所有 select 语句创建一个不同的临时文件夹并尝试 运行 使用内连接查询。
另一种是尝试增加服务器的内存。我有同样的问题 这也有帮助。
还要检查您在查询中添加的任何语句是否不需要 然后删除它。
主要的东西 创建索引。