本文整理汇总了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);
// }
//}
}
示例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);
}