Module @comunica/actor-rdf-join-optional-hash - v4.0.2

Comunica Optional Hash RDF Join Actor

npm version

An RDF Join actor that uses hash joins and can handle optional patterns. A comunica Optional Hash RDF Join Actor.

This module is part of the Comunica framework, and should only be used by developers that want to build their own query engine.

Click here if you just want to query with Comunica.

$ yarn add @comunica/actor-rdf-join-optional-hash

After installing, this package can be added to your engine's configuration as follows:

{
  "@context": [
    ...
    "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-join-optional-hash/^1.0.0/components/context.jsonld"
  ],
  "actors": [
    ...
    {
      "@id": "urn:comunica:default:rdf-join/actors#optional-hash",
      "@type": "ActorRdfJoinOptionalHash",
      "mediatorJoinSelectivity": { "@id": "urn:comunica:default:rdf-join-selectivity/mediators#main" },
      "canHandleUndefs": true,
      "blocking": true
    }
  ]
}
  • mediatorJoinSelectivity: A mediator over the RDF Join Selectivity bus.
  • canHandleUndefs: If this actor can handle undefined values. If false, performance will be slightly better.
  • blocking: If the join will block when collecting the optional stream. If true, performance will be better.

Classes

ActorRdfJoinOptionalHash

Interfaces

IActorRdfJoinOptionalHashArgs