0.0
No commit activity in last 3 years
No release in over 3 years
RDF.rb plugin providing a RedStore storage adapter.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0.1.6
>= 1.3.0
>= 0.5.3

Runtime

>= 0.1.9
 Project Readme

RedStore storage adapter for RDF.rb

This gem allows you to use a RedStore instance as a backend for RDF.rb.

Synopsis:

require 'rdf'
require 'rdf/redstore'

repo = RDF::RedStore::Repository.new('http://localhost:8080/')
puts RDF::Writer.for(:ntriples).dump repo

repo.load 'http://datagraph.org/jhacker/foaf.nt'
repo.count
# => 10
# Note: not all of the RedStore storage backends support the count method

subject = repo.first.subject
subject_statements = repo.query(:subject => subject)
subject_statements.size
# => 7

repo.delete(*subject_statements)
repo.count
# => 3

Installation

The recommended method of installation is via RubyGems.

$ sudo gem install rdf-redstore

Resources

Support

Please post questions or feedback to the W3C-ruby-rdf mailing list.

Author

'License'

This is free and unemcumbered software released into the public domain. For more information, see the accompanying UNLICENSE file.

If you're unfamiliar with public domain, that means it's perfectly fine to start with this skeleton and code away, later relicensing as you see fit.