Package | Description |
---|---|
org.modeshape.jcr.query.lucene |
The core query engine, which currently uses Lucene for indexing and raw queries, and
the Hibernate Search engine (which does not depend on or use Hibernate Core or JPA)
for updating and querying the Lucene indexes.
|
org.modeshape.jcr.query.lucene.basic |
The "basic"
Lucene schema has a single index in which all node
and property information are indexed into separate fields. |
Modifier and Type | Method and Description |
---|---|
LuceneQueryEngine.TupleCollector |
LuceneSchema.createTupleCollector(QueryContext queryContext,
QueryResults.Columns columns) |
Modifier and Type | Class and Description |
---|---|
class |
BasicTupleCollector
The
BasicLuceneSchema does not store any fields in the indexes, with the exception of the document identifier in which
we're storing the key of the node that the document represents. |
class |
ExistsTupleCollector
A special TupleCollector implementation that will terminate when it comes across a second document with a non-zero score.
|
Modifier and Type | Method and Description |
---|---|
LuceneQueryEngine.TupleCollector |
BasicLuceneSchema.createTupleCollector(QueryContext queryContext,
QueryResults.Columns columns) |
Constructor and Description |
---|
ExistsTupleCollector(LuceneQueryEngine.TupleCollector collector)
Create a ExistsTupleCollector wrapper over another
Collector , where the wrapper stops after the first non-zero
scored document. |
Copyright © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.