mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 19:03:25 +08:00

Also cleanup the API a bit Also provide more detailled statistics about the search index on the "Search Index Management" page. --HG-- branch : dev
17 lines
499 B
C#
17 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Indexing.Services {
|
|
public class IndexEntry {
|
|
public string IndexName { get; set; }
|
|
public int DocumentCount { get; set; }
|
|
public DateTime? LastUpdateUtc { get; set; }
|
|
public IEnumerable<string> Fields { get; set; }
|
|
}
|
|
|
|
public interface IIndexingService : IDependency {
|
|
void RebuildIndex();
|
|
void UpdateIndex();
|
|
IndexEntry GetIndexEntry();
|
|
}
|
|
} |