4.2.0 • Published 1 year ago

@comunica/actor-rdf-join-entries-sort-selectivity v4.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Comunica Selectivity RDF Join Entries Sort Actor

npm version

An RDF Join Entries Sort actor that orders join entries by increasing selectivity values, so that the join entries that would become most selective come first.

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.

Install

$ yarn add @comunica/actor-rdf-join-entries-sort-selectivity

Configure

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

{
  "@context": [
    ...
    "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-join-entries-sort-selectivity/^1.0.0/components/context.jsonld"
  ],
  "actors": [
    ...
    {
      "@id": "urn:comunica:default:rdf-join-entries-sort/actors#selectivity",
      "@type": "ActorRdfJoinEntriesSortSelectivity",
      "mediatorJoinSelectivity": { "@id": "urn:comunica:default:rdf-join-selectivity/mediators#main" }
    }
  ]
}

Config Parameters