当前位置: 首页>>代码示例>>C#>>正文


C# Lucene.AddDocument方法代码示例

本文整理汇总了C#中Lucene.AddDocument方法的典型用法代码示例。如果您正苦于以下问题:C# Lucene.AddDocument方法的具体用法?C# Lucene.AddDocument怎么用?C# Lucene.AddDocument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Lucene的用法示例。


在下文中一共展示了Lucene.AddDocument方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: parse_msg

        public static void parse_msg(Lucene.Net.Index.IndexWriter writer, string docid, string msgtxt)
        {
            if (msgtxt.Length > 4 * 1024) {
                msgtxt = msgtxt.Substring(0, 4 * 1024 - 1);
            }
            // db.setValueParsed(".zdata/doc/" + docid, msgtxt);
            // gui.debugDump(db);

            if (true) {
                // sharptools
                SharpMessage msg = new anmar.SharpMimeTools.SharpMessage(msgtxt);
                System.Console.WriteLine("Subject: " + msg.Subject);
                var doc = new Lucene.Net.Documents.Document();
                doc.Add(new Field("body", msg.Body, Field.Store.YES, Field.Index.ANALYZED));
                doc.Add(new Field("docid", docid, Field.Store.YES, Field.Index.NOT_ANALYZED));
                writer.AddDocument(doc);
                // indexer.index_document(docid, msg.Body);
            }

            //foreach (SharpAttachment msgpart in msg.Attachments) {
            //    if (msgpart.MimeTopLevelMediaType == MimeTopLevelMediaType.text &&
            //        msgpart.MimeMediaSubType == "plain") {
            //        System.Console.WriteLine("Attachment: " + msgpart.Size);
            //   }
            //}
        }
开发者ID:jeske,项目名称:StepsDB-alpha,代码行数:26,代码来源:BendInboxWalk.cs

示例2: AddDateDoc

		private static void  AddDateDoc(System.String content, int year, int month, int day, int hour, int minute, int second, Lucene.Net.Index.IndexWriter iw)
		{
			Lucene.Net.Documents.Document d = new Lucene.Net.Documents.Document();
			d.Add(new Lucene.Net.Documents.Field("f", content, Lucene.Net.Documents.Field.Store.YES, Lucene.Net.Documents.Field.Index.TOKENIZED));
			System.DateTime tempAux = new System.DateTime(year, month, day, hour, minute, second);
			d.Add(new Lucene.Net.Documents.Field("date", DateField.DateToString(tempAux), Lucene.Net.Documents.Field.Store.YES, Lucene.Net.Documents.Field.Index.UN_TOKENIZED));
			iw.AddDocument(d);
		}
开发者ID:vikasraz,项目名称:indexsearchutils,代码行数:8,代码来源:TestQueryParser.cs


注:本文中的Lucene.AddDocument方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。