Skip to content

RdfDataSource: Optimize repeated wrapping with algebra transforms. #10

@Aklakan

Description

@Aklakan

Consecutive wrappings of an RdfDataSource with algebra transformations will call Algebra.compile and OpAsQuery for each transform.
The wrap methods should automatically optimize the built RdfDataSource such that subsequent algebra transforms are carried out on the Op-level - i.e. without converting back and forth to the syntax form.

RdfDataSource dataSource = () -> RDFConnection.connect(...);
dataSource = RdfDataSources.wrapWithOpTransform(base, opTransform1);
dataSource = RdfDataSources.wrapWithOpTransform(base, opTransform2);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions