public class TermAutomatonQuery extends Query implements Accountable
PhraseQuery
, MultiPhraseQuery
and SpanNearQuery
. It is likely
slow, since it visits any document having any of the terms (i.e. it
acts like a disjunction, not a conjunction like PhraseQuery
), and then it must merge-sort all positions within each
document to test whether/how many times the automaton matches.
After creating the query, use createState()
, setAccept(int, boolean)
, addTransition(int, int, java.lang.String)
and addAnyTransition(int, int)
to
build up the automaton. Once you are done, call finish()
and
then execute the query.
This code is very new and likely has exciting bugs!
NULL_ACCOUNTABLE
Constructor and Description |
---|
TermAutomatonQuery(String field) |
Modifier and Type | Method and Description |
---|---|
void |
addAnyTransition(int source,
int dest)
Adds a transition matching any term.
|
void |
addTransition(int source,
int dest,
BytesRef term)
Adds a transition to the automaton.
|
void |
addTransition(int source,
int dest,
String term)
Adds a transition to the automaton.
|
int |
createState()
Returns a new state; state 0 is always the initial state.
|
Weight |
createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
boolean |
equals(Object other)
Returns true iff
o is equal to this. |
void |
finish()
Call this once you are done adding states/transitions.
|
void |
finish(int determinizeWorkLimit)
Call this once you are done adding states/transitions.
|
int |
hashCode() |
long |
ramBytesUsed() |
Query |
rewrite(IndexReader reader) |
void |
setAccept(int state,
boolean accept)
Marks the specified state as accept or not.
|
String |
toDot()
Returns the dot (graphviz) representation of this automaton.
|
String |
toString(String field) |
void |
visit(QueryVisitor visitor) |
classHash, sameClassAs, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getChildResources
public TermAutomatonQuery(String field)
public int createState()
public void setAccept(int state, boolean accept)
public void addTransition(int source, int dest, String term)
public void addTransition(int source, int dest, BytesRef term)
public void addAnyTransition(int source, int dest)
public void finish()
public void finish(int determinizeWorkLimit)
determinizeWorkLimit
- Maximum effort to spend determinizing the automaton. Higher numbers
allow this operation to consume more memory but allow more complex automatons. Use Operations.DEFAULT_DETERMINIZE_WORK_LIMIT
as a decent default if you don't otherwise know
what to specify.public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException
createWeight
in class Query
IOException
public boolean equals(Object other)
o
is equal to this.public long ramBytesUsed()
ramBytesUsed
in interface Accountable
public String toDot()
public Query rewrite(IndexReader reader) throws IOException
rewrite
in class Query
IOException
public void visit(QueryVisitor visitor)
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.