module Qa::LDF

Provides bindings from `qa` to a linked data fragment caching service for fast query of RDF-based authorities.

@see github.com/projecthydra-labs/questioning_authority Qa @see github.com/ActiveTriples/linked-data-fragments Linked Data

Fragments Cache

Public Class Methods

config() click to toggle source

@return [Configuration] the singleton configuration instance

# File lib/qa/ldf.rb, line 25
def self.config
  @config ||= configure!
end
configure!(**options, &block) click to toggle source

@example configuring with block syntax

Qa::LDF.configure

@see Configuration#configure

# File lib/qa/ldf.rb, line 33
def self.configure!(**options, &block)
  @config = Configuration.instance.configure!(**options, &block)
end
version() click to toggle source

@see VERSION

# File lib/qa/ldf.rb, line 39
def self.version
  VERSION
end