public interface QueryEngineSettingsMBean
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
TYPE |
Modifier and Type | Method and Description |
---|---|
boolean |
getFailTraversal()
Whether queries that don't use an index will fail (throw an exception).
|
long |
getLimitInMemory()
Get the limit on how many nodes a query may read at most into memory, for
"order by" and "distinct" queries.
|
long |
getLimitReads()
Get the limit on how many nodes a query may read at most (raw read
operations, including skipped nodes).
|
boolean |
isFastQuerySize()
Whether the query result size should return an estimation for large queries.
|
void |
setFailTraversal(boolean failTraversal)
Set whether queries that don't use an index will fail (throw an exception).
|
void |
setFastQuerySize(boolean fastQuerySize) |
void |
setLimitInMemory(long limitInMemory)
Change the limit.
|
void |
setLimitReads(long limitReads)
Change the limit.
|
static final java.lang.String TYPE
@Description(value="Get the limit on how many nodes a query may read at most into memory, for \"order by\" and \"distinct\" queries. If this limit is exceeded, the query throws an exception.") long getLimitInMemory()
void setLimitInMemory(long limitInMemory)
limitInMemory
- the new limit@Description(value="Get the limit on how many nodes a query may read at most (raw read operations, including skipped nodes). If this limit is exceeded, the query throws an exception.") long getLimitReads()
void setLimitReads(long limitReads)
limitReads
- the new limit@Description(value="Whether queries that don\'t use an index will fail (throw an exception). The default is false.") boolean getFailTraversal()
void setFailTraversal(boolean failTraversal)
failTraversal
- the new value for this setting@Description(value="Whether the query result size should return an estimation for large queries.") boolean isFastQuerySize()
void setFastQuerySize(boolean fastQuerySize)
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"