class Qa::LDF::FAST

A caching OCLC Faceted Application of Subject Terminology (FAST) authority.

@see LinkedDataFragments::CacheServer @see www.oclc.org/research/themes/data-science/fast.html

Constants

DEFAULT_DATASET_NAME
NAMESPACE

Public Class Methods

namespace() click to toggle source

@return [String] the URI namespace associated with this authority

# File lib/qa/ldf/authorities/fast.rb, line 31
def self.namespace
  NAMESPACE
end

Public Instance Methods

search_service() click to toggle source

Uses the LC AssignFast 'all' subauthority as the search provider

# File lib/qa/ldf/authorities/fast.rb, line 37
def search_service
  @search_service ||= SearchService.new do |service|
    service.namespace      = NAMESPACE
    service.parent_service =
      Qa::Authorities::AssignFast.subauthority_for('all')
  end
end