优化负载和搜索速度ASP.NET C#

时间:2015-10-04 01:25:03

标签: c# asp.net xml performance dataset

我是ASP.NET的新手,但经过一些基础知识的努力,感谢谷歌我设法建立了一个满足我需求的页面。

Web应用程序应该从我使用localhost上的另一个Windows应用程序生成的XML文件加载数据,显示此数据并允许用户搜索它。

此XML文件包含超过50 MB和超过120,000个条目。

我正在将这个XML文件读入数据集,然后我将其绑定到gridView。

问题是:

  • 当我第一次加载页面时,最多可能需要30秒
  • 当我搜索数据时,加载时间可能超过10秒

我该如何解决这个问题? 我尝试过StateView,但是会导致“Ran out of Memory”异常。 我做了一些研究,似乎我可以将这个数据集保存在服务器缓存中,这样可以让所有用户立即访问它,而不需要每次为每个用户重新加载XML?

这是我目前的代码,如果有什么不好,请告诉我,因为我不知道ASP.NET。感谢。

 public DataSet ds = new DataSet();
    public DataSet resultDS = new DataSet();
    public bool searchListActive = false;
    string _sortDirection = "";

    protected void Page_Load(object sender, EventArgs e)
    {
        BindGrid();
        if (!IsPostBack)
        {
            gridView_IndexData.PageSize = Convert.ToInt32(ddList_DataCount.SelectedItem.Value);
            ViewState["searchListActive"] = false;
            BindCB();
        }

        gridView_IndexData.PageSize = Convert.ToInt32(ddList_DataCount.SelectedItem.Value);
    }



    void BindGrid()
    {
        ds.ReadXml(Server.MapPath("~/lstData.xml"));
        gridView_IndexData.DataSource = ds;
        gridView_IndexData.DataBind();
    }

    void BindCB()
    {
        DataTable dt = ds.Tables[0].DefaultView.ToTable(true, "forumName");
        var DR = dt.NewRow();
        DR["forumName"] = "All forums";
        dt.Rows.InsertAt(DR, 0);
        dt.AcceptChanges();
        ddList_Forum.DataSource = dt;
        ddList_Forum.DataTextField = "forumName";
        ddList_Forum.DataBind();
    }



    protected void btnSearchQuery_Click(object sender, EventArgs e)
    {
        resultDS = ds.Clone();

        string searchQuery = "";

        searchQuery = "TopicTitle LIKE '%" + tbSearchInput.Text + "%'";

        if (tbSearchByUsername.Text.Length > 0)
        {
            searchQuery += "AND UserName ='" + tbSearchByUsername.Text + "'";
        }

        if (ddList_Type.Text != "")
        {
            searchQuery += "AND Type ='" + ddList_Type.Text + ":'";
        }

        if (ddList_Forum.Text != "All forums")
        {
            searchQuery += "AND forumName ='" + ddList_Forum.Text + "'";
        }


        var results = ds.Tables[0].Select(searchQuery);
        resultDS.Tables.Add();

        foreach (DataRow dr in results)
        {
            resultDS.Tables[0].ImportRow(dr);
        }

        resultDS.AcceptChanges();
        gridView_IndexData.DataSource = resultDS.Tables[0];
        ViewState["searchListActive"] = true;
        ViewState["resultDS"] = resultDS;
        gridView_IndexData.DataBind();

    }

    protected void gridView_IndexData_Sorting(object sender, GridViewSortEventArgs e)
    {
        SetSortDirection(e.SortDirection.ToString());
        ds.Tables[0].DefaultView.Sort = e.SortExpression + " " + _sortDirection;
        gridView_IndexData.DataSource = ds.Tables[0];
        gridView_IndexData.DataBind();
    }

    void SetSortDirection(string sortDirection)
    {
        if (sortDirection == "Descending")
        {
            _sortDirection = "DESC";
        }
        else
        {
            _sortDirection = "ASC";
        }
    }

    protected void gridView_IndexData_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        gridView_IndexData.PageIndex = e.NewPageIndex;
        if ((bool)ViewState["searchListActive"] == true)
        {
            gridView_IndexData.DataSource = (DataSet)ViewState["resultDS"];
        }
        gridView_IndexData.DataBind();
    }

2 个答案:

答案 0 :(得分:2)

1)如果你将共享同一个数据集实例,它会在并发用户同时搜索时给你错误

2)优化搜索速度将结构转换为LINQ而不是数据集查询

答案 1 :(得分:1)

我会使用适当的xml处理组合,例如使用xmlreader。这是一篇关于它的文章(http://forums.asp.net/t/1939295.aspx?Most+efficient+way+to+iterate+through+XML)。并且,尽可能最大限度地利用缓存。以下是一些指针(Data Caching in ASP.Net)。