Dan Pokorny > RDF-Core-0.31 > RDF::Core::Evaluator

Download:
RDF-Core-0.31.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  3
Open  3
View Bugs
Report a bug
Source   Latest Release: RDF-Core-0.51

NAME ^

RDF::Core::Evaluator - gets a query object that RDF::Core::Query parsed and evaluates the query.

SYNOPSIS ^

  my %namespaces = (Default => 'http://myApp.gingerall.org/ns#',
                    ns     => 'http://myApp.gingerall.org/ns#',
                   );
  my $evaluator = new RDF::Core::Evaluator
    (Model => $model,            #an instance of RDF::Core::Model
     Factory => $factory,        #an instance of RDF::Core::NodeFactory
     Namespaces => \%namespaces,
    );
  my $query = new RDF::Core::Query(Evaluator=> $evaluator);

DESCRIPTION ^

The evaluator is just to be created and passed to query object, that uses it to evaluate the query.

Interface

LICENSE ^

This package is subject to the MPL (or the GPL alternatively).

AUTHOR ^

Ginger Alliance, rdf@gingerall.cz

SEE ALSO ^

RDF::Core::Query