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


C# Lucene.Net.Documents.Document.Get方法代码示例

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


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

示例1: TestBinaryField

		public virtual void  TestBinaryField()
		{
			Lucene.Net.Documents.Document doc = new Lucene.Net.Documents.Document();
			Fieldable stringFld = new Field("string", binaryVal, Field.Store.YES, Field.Index.NO);
			Fieldable binaryFld = new Field("binary", (new System.Text.ASCIIEncoding()).GetBytes(binaryVal), Field.Store.YES);
			Fieldable binaryFld2 = new Field("binary", (new System.Text.ASCIIEncoding()).GetBytes(binaryVal2), Field.Store.YES);

			doc.Add(stringFld);
			doc.Add(binaryFld);

			Assert.AreEqual(2, doc.GetFieldsCount());
			
			Assert.IsTrue(binaryFld.IsBinary());
			Assert.IsTrue(binaryFld.IsStored());
			Assert.IsFalse(binaryFld.IsIndexed());
			Assert.IsFalse(binaryFld.IsTokenized());
			
			System.String binaryTest = (new System.Text.ASCIIEncoding()).GetString(doc.GetBinaryValue("binary"));
			Assert.IsTrue(binaryTest.Equals(binaryVal));
			
			System.String stringTest = doc.Get("string");
			Assert.IsTrue(binaryTest.Equals(stringTest));
			
			doc.Add(binaryFld2);
			
			Assert.AreEqual(3, doc.GetFieldsCount());
			
			byte[][] binaryTests = doc.GetBinaryValues("binary");
			
			Assert.AreEqual(2, binaryTests.Length);
			
			binaryTest = new System.String(System.Text.UTF8Encoding.UTF8.GetChars(binaryTests[0]));
			System.String binaryTest2 = new System.String(System.Text.UTF8Encoding.UTF8.GetChars(binaryTests[1]));
			
			Assert.IsFalse(binaryTest.Equals(binaryTest2));
			
			Assert.IsTrue(binaryTest.Equals(binaryVal));
			Assert.IsTrue(binaryTest2.Equals(binaryVal2));
			
			doc.RemoveField("string");
			Assert.AreEqual(2, doc.GetFieldsCount());
			
			doc.RemoveFields("binary");
			Assert.AreEqual(0, doc.GetFieldsCount());
		}
开发者ID:vikasraz,项目名称:indexsearchutils,代码行数:45,代码来源:TestDocument.cs

示例2: IndexItem

        public IndexItem(Lucene.Net.Documents.Document doc, float score)
        {
            luceneDoc = doc;

            docKey = luceneDoc.Get("Key");
            siteID = Convert.ToInt32(luceneDoc.Get("SiteID"), CultureInfo.InvariantCulture);

            PageName = luceneDoc.Get("PageName");
            ModuleTitle = luceneDoc.Get("ModuleTitle");
            Title = luceneDoc.Get("Title");
            intro = luceneDoc.Get("Intro");
            ViewPage = luceneDoc.Get("ViewPage");
            QueryStringAddendum = luceneDoc.Get("QueryStringAddendum");
            bool useQString;
            if (bool.TryParse(luceneDoc.Get("UseQueryStringParams"), out useQString))
            {
                useQueryStringParams = useQString;
            }
            Author = luceneDoc.GetNullSafeString("Author");

            // the below are lazy loaded if accessed from the public getters

            //ViewRoles = luceneDoc.Get("ViewRoles");
            //ModuleViewRoles = luceneDoc.Get("ModuleRole");
            //SiteId = Convert.ToInt32(luceneDoc.Get("SiteID"), CultureInfo.InvariantCulture);
            //PageId = Convert.ToInt32(luceneDoc.Get("PageID"), CultureInfo.InvariantCulture);

            //PageIndex = Convert.ToInt32(luceneDoc.Get("PageIndex"), CultureInfo.InvariantCulture);
            //PageNumber = Convert.ToInt32(luceneDoc.Get("PageNumber"), CultureInfo.InvariantCulture);

            //string fid = luceneDoc.Get("FeatureId");
            //if ((fid != null)&&(fid.Length > 0))
            //{
            //    FeatureId = fid;
            //}
            //FeatureName = luceneDoc.Get("FeatureName");
            //ItemId = Convert.ToInt32(luceneDoc.Get("ItemID"), CultureInfo.InvariantCulture);
            //ModuleId = Convert.ToInt32(luceneDoc.Get("ModuleID"), CultureInfo.InvariantCulture);

            //DateTime pubBegin = DateTime.MinValue;
            //if (DateTime.TryParse(luceneDoc.Get("PublishBeginDate"), out pubBegin))
            //{
            //    this.publishBeginDate = pubBegin;
            //}

            //DateTime pubEnd = DateTime.MaxValue;
            //if (DateTime.TryParse(luceneDoc.Get("PublishEndDate"), out pubEnd))
            //{
            //    this.publishEndDate = pubEnd;
            //}

            //try
            //{
            //    long createdTicks = Convert.ToInt64(luceneDoc.Get("CreatedUtc"));
            //    CreatedUtc = new DateTime(createdTicks);
            //}
            //catch (FormatException) { }

            //try
            //{
            //    long lastModTicks = Convert.ToInt64(luceneDoc.Get("LastModUtc"));
            //    LastModUtc = new DateTime(lastModTicks);
            //}
            //catch (FormatException) { }

            //boost = doc.GetBoost();
            //boost = luceneDoc.Boost;
        }
开发者ID:joedavis01,项目名称:mojoportal,代码行数:68,代码来源:IndexItem.cs


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