Class BaseSimpleFullTextIndexer
Abstract Implementation of a simple Full Text Indexer which simply indexes the full text of literal objects and associates a specific Node with that full text.
Inherited Members
Namespace: VDS.RDF.Query.FullText.Indexing
Assembly: dotNetRDF.Query.FullText.dll
Syntax
public abstract class BaseSimpleFullTextIndexer : BaseFullTextIndexer, IFullTextIndexer
Methods
| Improve this Doc View SourceIndex(String, INode, String)
Abstract method that derived classes must implement to do the actual indexing of full text and node pairs.
Declaration
protected abstract void Index(String graphUri, INode n, String text)
Parameters
Type | Name | Description |
---|---|---|
String | graphUri | Graph URI. |
INode | n | Node. |
String | text | Full Text. |
Index(String, Triple)
Indexes a Triple.
Declaration
protected override void Index(String graphUri, Triple t)
Parameters
Type | Name | Description |
---|---|---|
String | graphUri | Graph URI. |
Triple | t | Triple. |
Overrides
| Improve this Doc View SourceUnindex(String, INode, String)
Abstract method that derived classes must implement to do the actual unindexing of full text and nodes.
Declaration
protected abstract void Unindex(String graphUri, INode n, String text)
Parameters
Type | Name | Description |
---|---|---|
String | graphUri | Graph URI. |
INode | n | Node to index. |
String | text | Full Text to associate with the Node. |
Unindex(String, Triple)
Unindexes a Triple.
Declaration
protected override void Unindex(String graphUri, Triple t)
Parameters
Type | Name | Description |
---|---|---|
String | graphUri | Graph URI. |
Triple | t | Triple. |
Overrides
Implements
IDisposable