The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

RDF::AllegroGraph::Easy - Simplistic Interface to AllegroGraph HTTP server

SYNOPSIS

  my $storage = new RDF::AllegroGraph::Easy ('http://my:secret@localhost:10035');
  my $model   = $storage->model ('/scratch/catlitter', mode => O_CREAT);

  $model->add (....);                            # add stuff
  $model->delete (...);                          # get rid of stuff
  my @tuples = $model->sparql ('SELECT ...');    # query it
  $model->disband;                               # remove the whole thing

DESCRIPTION

The idea of this interface is to concentrate on the essentials:

Currently this abstraction layer supports v3 and v4 AG server, albeit with many omissions.

INTERFACE

Constructor

[changed v0.6]

The constructor expects one parameter which is interpreted as HTTP endpoint for your AllegroGraph server. If left undef, then the default http://localhost:10035 will be used.

NOTE: No trailing slash!

AUTHOR

Robert Barta, <rho at devc.at>

BUGS

Please report any bugs or feature requests to bug-rdf-allegrograph-easy at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=RDF-AllegroGraph-Easy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 20(09|10) Robert Barta, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.