AtteanX::Store::LDF(3pm) | User Contributed Perl Documentation | AtteanX::Store::LDF(3pm) |
AtteanX::Store::LDF - Linked Data Fragment RDF store
use v5.14; use Attean; use Attean::RDF qw(iri blank literal); use AtteanX::Store::LDF; my $uri = 'http://fragments.dbpedia.org/2014/en'; my $store = Attean->get_store('LDF')->new(start_url => $uri); my $iter = $store->get_triples(undef,undef,literal("Albert Einstein")); while (my $triple = $iter->next) { say $triple->subject->ntriples_string . " " . $triple->predicate->ntriples_string . " " . $triple->object->ntriples_string . " ."; }
AtteanX::Store::LDF provides a triple-store connected to a Linked Data Fragment server. For more information on Triple Pattern Fragments consult <http://linkeddatafragments.org/>
Beyond the methods documented below, this class inherits methods from the Attean::API::TripleStore class.
Attean , Attean::API::TripleStore
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/phochste/AtteanX-Store-LDF>.
Patrick Hochstenbach "<patrick.hochstenbach@ugent.be>" Kjetil Kjernsmo <kjetilk@cpan.org>.
This software is copyright (c) 2015 by Patrick Hochstenbach. This software is copyright (c) 2016 by Patrick Hochstenbach and Kjetil Kjernsmo. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-06-15 | perl v5.34.0 |