use of org.neo4j.internal.kernel.api.RelationshipIndexCursor in project neo4j by neo4j.
the class TransactionImpl method relationshipsByTypeAndProperty.
private ResourceIterator<Relationship> relationshipsByTypeAndProperty(KernelTransaction transaction, int typeId, PropertyIndexQuery query) {
Read read = transaction.dataRead();
if (query.propertyKeyId() == TokenRead.NO_TOKEN || typeId == TokenRead.NO_TOKEN) {
return emptyResourceIterator();
}
var index = findUsableMatchingIndex(transaction, SchemaDescriptor.forRelType(typeId, query.propertyKeyId()));
if (index != IndexDescriptor.NO_INDEX) {
// Ha! We found an index - let's use it to find matching relationships
try {
var cursor = transaction.cursors().allocateRelationshipValueIndexCursor(transaction.cursorContext(), transaction.memoryTracker());
IndexReadSession indexSession = read.indexReadSession(index);
read.relationshipIndexSeek(indexSession, cursor, unconstrained(), query);
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// weird at this point but ignore and fallback to a type scan
}
}
return getRelationshipsByTypeAndPropertyWithoutPropertyIndex(transaction, typeId, query);
}
use of org.neo4j.internal.kernel.api.RelationshipIndexCursor in project neo4j by neo4j.
the class TransactionImpl method allRelationshipsWithType.
private ResourceIterator<Relationship> allRelationshipsWithType(final RelationshipType type) {
KernelTransaction ktx = kernelTransaction();
int typeId = ktx.tokenRead().relationshipType(type.name());
if (typeId == TokenRead.NO_TOKEN) {
return emptyResourceIterator();
}
var index = findUsableMatchingIndex(ktx, SchemaDescriptor.forAnyEntityTokens(EntityType.RELATIONSHIP));
if (index != IndexDescriptor.NO_INDEX) {
try {
var session = ktx.dataRead().tokenReadSession(index);
var cursor = ktx.cursors().allocateRelationshipTypeIndexCursor(ktx.cursorContext());
ktx.dataRead().relationshipTypeScan(session, cursor, unconstrained(), new TokenPredicate(typeId));
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// ignore, fallback to all node scan
}
}
return allRelationshipsByTypeWithoutIndex(ktx, typeId);
}
use of org.neo4j.internal.kernel.api.RelationshipIndexCursor in project neo4j by neo4j.
the class TransactionImpl method relationshipsByTypeAndProperties.
private ResourceIterator<Relationship> relationshipsByTypeAndProperties(KernelTransaction tx, int typeId, PropertyIndexQuery.ExactPredicate... queries) {
Read read = tx.dataRead();
if (isInvalidQuery(typeId, queries)) {
return emptyResourceIterator();
}
int[] propertyIds = getPropertyIds(queries);
IndexDescriptor index = findUsableMatchingCompositeIndex(tx, SchemaDescriptor.forRelType(typeId, propertyIds), propertyIds, () -> tx.schemaRead().indexesGetForRelationshipType(typeId));
if (index != IndexDescriptor.NO_INDEX) {
try {
RelationshipValueIndexCursor cursor = tx.cursors().allocateRelationshipValueIndexCursor(tx.cursorContext(), tx.memoryTracker());
IndexReadSession indexSession = read.indexReadSession(index);
read.relationshipIndexSeek(indexSession, cursor, unconstrained(), getReorderedIndexQueries(index.schema().getPropertyIds(), queries));
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// weird at this point but ignore and fallback to a label scan
}
}
return getRelationshipsByTypeAndPropertyWithoutPropertyIndex(tx, typeId, queries);
}
Aggregations