資源簡介
C#調(diào)用Lucene方法-實(shí)現(xiàn)快速搜索

代碼片段和文件信息
///bean
///2012年4月20日?15:27:37
///詳述:Lucene搜索簡單調(diào)用
///這個版本只是一個簡單的DEMO,用到的也是標(biāo)準(zhǔn)分詞
///如果有需要大家可以試著調(diào)用盤古的分詞,那個搜索的體驗(yàn)會更好些
///如有配置、生成或不明白問題請QQ聯(lián)系
///qq在www.xiats.com?網(wǎng)址最底部可以找到
///歡迎溝通相互學(xué)習(xí)
using?System;
using?System.Data;
using?System.Configuration;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.WebControls.WebParts;
using?System.Web.UI.HtmlControls;
using?ZZG.Entity;
using?System.Collections.Generic;
using?ZZG.BLL;
public?partial?class?_Default?:?System.Web.UI.Page?
{
????///?
????///?商品名稱關(guān)鍵字
????///?
????private?string?NameKey
????{
????????get
????????{
????????????if?(this.Request[“txtNameKey“]?!=?null)
????????????{
????????????????return?this.Request[“txtNameKey“];
????????????}
????????????return?““;
????????}
????}
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????}
????///?
????///?得到商品集合
????///?
????///?商品集合
????protected?List?GetProductInfo()
????{
????????List?list?=?new?List();
????????if?(this.NameKey?!=?““)
????????{
????????????list?=?SearchProduct.SearchProductInfo(this.NameKey);
????????}
????????
????????return?list;
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????????4??2009-07-17?00:50??Lucene\web\All_Product\deletable
?????文件?????????28??2009-07-17?00:50??Lucene\web\All_Product\segments
?????文件???????5242??2009-07-17?00:50??Lucene\web\All_Product\_32.cfs
?????文件????????220??2013-04-20?15:44??Lucene\web\readme.txt
?????文件???????1481??2009-07-10?18:35??Lucene\web\web\App_Code\CreateLucene.cs
?????文件???????1523??2009-07-17?00:11??Lucene\web\web\App_Code\SearchProduct.cs
?????文件????3047424??2007-03-02?17:27??Lucene\web\web\Bin\Lucene.Net.Analysis.China.dll
?????文件?????????68??2009-07-10?17:48??Lucene\web\web\Bin\Lucene.Net.Analysis.China.dll.refresh
?????文件?????274432??2007-03-02?17:07??Lucene\web\web\Bin\Lucene.Net.dll
?????文件?????????38??2009-07-10?17:48??Lucene\web\web\Bin\Lucene.Net.dll.refresh
?????文件???????4096??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.BLL.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.BLL.pdb
?????文件???????4096??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.DAL.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.DAL.pdb
?????文件???????4096??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.Entity.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\web\Bin\ZZG.Entity.pdb
?????文件????3047424??2007-03-02?17:27??Lucene\web\web\BLL\Lucene.Net.Analysis.China.dll
?????文件?????274432??2007-03-02?17:07??Lucene\web\web\BLL\Lucene.Net.dll
?????文件???????1187??2009-07-10?18:01??Lucene\web\web\Global.asax
?????文件???????1047??2009-07-10?18:29??Lucene\web\web\showproduct.aspx
?????文件???????1509??2013-04-20?15:43??Lucene\web\web\showproduct.aspx.cs
?????文件???????1799??2013-04-20?15:40??Lucene\web\web\Web.Config
?????文件???????5578??2013-04-20?15:41??Lucene\web\web.sln
????..A..H.?????31232??2013-04-20?15:41??Lucene\web\web.suo
?????文件???????4096??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.BLL.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.BLL.pdb
?????文件???????4096??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.DAL.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.DAL.pdb
?????文件???????4096??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.Entity.dll
?????文件??????11776??2013-04-20?15:41??Lucene\web\ZZG.BLL\bin\Debug\ZZG.Entity.pdb
............此處省略78個文件信息
評論
共有 條評論