Class DefaultPostingsFormatFactory
LUCENENET specific class that implements the default functionality for the
IPostings
The most common use cases are:
- Initialize Default
Postings with a set of CustomFormat Factory Postings .Format Types - Subclass Default
Postings and override GetFormat Factory Postings so an external dependency injection container can be used to supply the instances (lifetime should be singleton). Note that you could alternately use the "named type" feature that many DI containers have to supply the type based on name by overriding GetFormat(Type) Postings .Format(String) - Subclass Default
Postings and override GetFormat Factory Postings so a type new type can be supplied that is not in the Lucene.Format Type(String) Net. .Codecs. Default Postings Format Factory. postings Format Name To Type Map - Subclass Default
Postings to add new or override the default PostingsFormat Factory Format types by overriding Initialize() and calling PutPostings .Format Type(Type) - Subclass Default
Postings to scan additional assemblies for PostingsFormat Factory Format subclasses in by overriding Initialize() and calling ScanFor . For performance reasons, the default behavior only loads Lucene.Net codecs.Postings Formats(Assembly)
To set the IPostings
Inherited Members
Namespace: Lucene.Net.Codecs
Assembly: Lucene.Net.dll
Syntax
public class DefaultPostingsFormatFactory : NamedServiceFactory<PostingsFormat>, IPostingsFormatFactory, IServiceListable
Constructors
| Improve this Doc View SourceDefaultPostingsFormatFactory()
Creates a new instance of Default
Declaration
public DefaultPostingsFormatFactory()
Properties
| Improve this Doc View SourceAvailableServices
Gets a list of the available Postings
Declaration
public virtual ICollection<string> AvailableServices { get; }
Property Value
Type | Description |
---|---|
System. |
A ICollection{string} of Postings |
CustomPostingsFormatTypes
An array of custom Postings
These types will be registered after the default Lucene types, so if a custom type has the same
name as a Lucene Postings
Declaration
public IEnumerable<Type> CustomPostingsFormatTypes { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceGetPostingsFormat(String)
Gets the Postingsname
.
Declaration
public virtual PostingsFormat GetPostingsFormat(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the Postings |
Returns
Type | Description |
---|---|
Postings |
The Postings |
GetPostingsFormat(Type)
Gets the Postingstype
.
Declaration
protected virtual PostingsFormat GetPostingsFormat(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The System. |
Returns
Type | Description |
---|---|
Postings |
The Postings |
GetPostingsFormatType(String)
Gets the Postingsname
.
Declaration
protected virtual Type GetPostingsFormatType(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the Postings |
Returns
Type | Description |
---|---|
System. |
The Postings |
Initialize()
Initializes the codec type cache with the known Postingsbase.Initialize()
) to add your
own Postings
If two types have the same name by using the Postings
Declaration
protected override void Initialize()
Overrides
NewPostingsFormat(Type)
Instantiates a Postingstype
.
Declaration
protected virtual PostingsFormat NewPostingsFormat(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The System. |
Returns
Type | Description |
---|---|
Postings |
The new instance. |
PutPostingsFormatType(Type)
Adds a Postings
Note that if a Postings
Declaration
protected virtual void PutPostingsFormatType(Type postingsFormat)
Parameters
Type | Name | Description |
---|---|---|
System. |
postingsFormat | A type that subclasses Postings |
ScanForPostingsFormats(IEnumerable<Assembly>)
Scans the given assemblies
for subclasses of Codec
and adds their names to the Lucene.
Declaration
protected virtual void ScanForPostingsFormats(IEnumerable<Assembly> assemblies)
Parameters
Type | Name | Description |
---|---|---|
System. |
assemblies | A list of assemblies to scan. The assemblies will be scanned from first to last,
and the last match for each Postings |
ScanForPostingsFormats(Assembly)
Scans the given assembly
for subclasses of Postings
Declaration
protected virtual void ScanForPostingsFormats(Assembly assembly)
Parameters
Type | Name | Description |
---|---|---|
System. |
assembly | The assembly to scan. |