Click or drag to resize

BaseLuceneSearchProvider Class

Abstract Base Implementation of a Full Text Search Provider using Lucene.Net.
Inheritance Hierarchy
System.Object
  VDS.RDF.Query.FullText.Search.Lucene.BaseLuceneSearchProvider
    VDS.RDF.Query.FullText.Search.Lucene.LuceneSearchProvider

Namespace:  VDS.RDF.Query.FullText.Search.Lucene
Assembly:  dotNetRDF.Query.FullText (in dotNetRDF.Query.FullText.dll) Version:
Syntax
public abstract class BaseLuceneSearchProvider : IFullTextSearchProvider, 
	IDisposable, IConfigurationSerializable

The BaseLuceneSearchProvider type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyIsAutoSynced
Gets whether this search provider is always seeing the latest state of the index.
Top
Methods
  NameDescription
Public methodDispose
Disposes of the Search Provider.
Protected methodDisposeInternal
Virtual method that can be overridden to add implementation specific dispose logic.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Destructor which ensures that the Search Provider is properly disposed of
(Overrides Object.Finalize().)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMatch(String)
Gets results that match the given query.
Public methodMatch(IEnumerable<Uri>, String)
Gets results that match the given query.
Public methodMatch(String, Double)
Gets results that match the given query with the score threshold applied.
Public methodMatch(String, Int32)
Gets results that match the given query with a limit applied.
Public methodMatch(IEnumerable<Uri>, String, Double)
Gets results that match the given query with the score threshold applied.
Public methodMatch(IEnumerable<Uri>, String, Int32)
Gets results that match the given query with a limit applied.
Public methodMatch(String, Double, Int32)
Gets results that match the given query with the score threshold and limit applied.
Public methodMatch(IEnumerable<Uri>, String, Double, Int32)
Gets results that match the given query with the score threshold and limit applied.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSerializeConfiguration
Serializes Configuration of this Provider.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Derived Implementations may only need to call the base constructor as the LuceneSearchProvider does but if you've implemented custom indexing you may need to extend more of this class.
See Also