public class FilteringIndexStoreStrategy extends Object implements IndexStoreStrategy
| Constructor and Description |
|---|
FilteringIndexStoreStrategy(IndexStoreStrategy strategy,
Predicate<String> filter) |
FilteringIndexStoreStrategy(IndexStoreStrategy strategy,
Predicate<String> filter,
boolean readOnly) |
| Modifier and Type | Method and Description |
|---|---|
long |
count(Filter filter,
NodeState root,
NodeState indexMeta,
Set<String> values,
int max)
Count the occurrence of a given set of values.
|
long |
count(NodeState root,
NodeState indexMeta,
Set<String> values,
int max)
Count the occurrence of a given set of values.
|
boolean |
exists(Supplier<NodeBuilder> index,
String key)
Check whether an entry for the given key exists.
|
String |
getIndexNodeName() |
Iterable<String> |
query(Filter filter,
String indexName,
NodeState indexMeta,
Iterable<String> values)
Search for a given set of values.
|
void |
update(Supplier<NodeBuilder> index,
String path,
String indexName,
NodeBuilder indexMeta,
Set<String> beforeKeys,
Set<String> afterKeys)
Updates the index for the given path.
|
public FilteringIndexStoreStrategy(IndexStoreStrategy strategy, Predicate<String> filter)
public FilteringIndexStoreStrategy(IndexStoreStrategy strategy, Predicate<String> filter, boolean readOnly)
public void update(Supplier<NodeBuilder> index, String path, String indexName, NodeBuilder indexMeta, Set<String> beforeKeys, Set<String> afterKeys) throws CommitFailedException
IndexStoreStrategyupdate in interface IndexStoreStrategyindex - the index node supplierpath - path stored in the indexindexName - the name of the index. May be null.indexMeta - the definition of the index. May be null.beforeKeys - keys that no longer apply to the pathafterKeys - keys that now do apply to the pathCommitFailedExceptionpublic boolean exists(Supplier<NodeBuilder> index, String key)
IndexStoreStrategyexists in interface IndexStoreStrategyindex - the index node supplierkey - the keypublic Iterable<String> query(Filter filter, String indexName, NodeState indexMeta, Iterable<String> values)
IndexStoreStrategyquery in interface IndexStoreStrategyfilter - the filter (can optionally be used for optimized query execution)indexName - the name of the index (for logging)indexMeta - the index metadata node (may not be null)values - values to look for (null to check for property existence)public long count(NodeState root, NodeState indexMeta, Set<String> values, int max)
IndexStoreStrategycount in interface IndexStoreStrategyroot - the root node (may not be null)indexMeta - the index metadata node (may not be null)values - values to look for (null to check for property existence)max - the maximum value to returnpublic long count(Filter filter, NodeState root, NodeState indexMeta, Set<String> values, int max)
IndexStoreStrategycount in interface IndexStoreStrategyfilter - the filter which can be used to estimate better costroot - the root node (may not be null)indexMeta - the index metadata node (may not be null)values - values to look for (null to check for property existence)max - the maximum value to returnpublic String getIndexNodeName()
getIndexNodeName in interface IndexStoreStrategyCopyright © 2010 - 2020 Adobe. All Rights Reserved