Complete refactoring on Indexing module

Changed Parse() to use lucene syntax
Moved everything to Orchard.Indexing
New filters for search

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-06-17 16:21:29 -07:00
parent a1cc5d579b
commit 40769d6f2a
47 changed files with 775 additions and 413 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace Orchard.Indexing.Services {
public interface IIndexingService : IDependency {
bool HasIndexToManage { get; }
void RebuildIndex();
void UpdateIndex();
DateTime GetIndexUpdatedUtc();
}
}