Files
Umbraco-CMS/src/Umbraco.Web/Search/ExamineIndexerModel.cs

45 lines
1.3 KiB
C#

using System;
using System.Runtime.Serialization;
using Examine;
namespace Umbraco.Web.Search
{
[DataContract(Name = "indexer", Namespace = "")]
public class ExamineIndexerModel : ExamineSearcherModel
{
[DataMember(Name = "indexCriteria")]
public IIndexCriteria IndexCriteria { get; set; }
/// <summary>
/// The number of docs in the index
/// </summary>
[DataMember(Name = "documentCount")]
public int DocumentCount { get; set; }
/// <summary>
/// The number of fields in the index
/// </summary>
[DataMember(Name = "fieldCount")]
public int FieldCount { get; set; }
/// <summary>
/// The number of documents flagged for deletion in the index
/// </summary>
[DataMember(Name = "deletionCount")]
public int DeletionCount { get; set; }
/// <summary>
/// Whether or not the indexed is optimized
/// </summary>
[DataMember(Name = "isOptimized")]
public bool IsOptimized{ get; set; }
/// <summary>
/// Generally will always be true unless someone has created a new non-lucene index
/// </summary>
[DataMember(Name = "isLuceneIndex")]
public bool IsLuceneIndex { get; set; }
}
}