The interface for search implementations.
Searchable is the abstract network protocol for searching. Implementations
provide search over a single index, over multiple indices, and over indices
on remote servers.
Queries, filters and sort criteria are designed to be compact so that they
may be efficiently passed to a remote index, with only the top-scoring hits
being returned, rather than every matching hit.
NOTE: this interface is kept public for convenience. Since it is not
expected to be implemented directly, it may be changed unexpectedly between
releases.
Namespace: Lucene.Net.SearchAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public interface Searchable |
Visual Basic |
---|
Public Interface Searchable |
Visual C++ |
---|
public interface class Searchable |
See Also