Package | Description |
---|---|
org.openrdf.repository.sail |
Repository implementation for local RDF databases that
implement the SAIL API.
|
org.openrdf.sail |
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API
for RDF repositories.
|
org.openrdf.sail.config | |
org.openrdf.sail.federation | |
org.openrdf.sail.federation.config | |
org.openrdf.sail.helpers |
Generic utility classes for RDF Sail implementations.
|
org.openrdf.sail.inferencer.fc |
Forward-chaining inferencers, implemented as StackableSails.
|
org.openrdf.sail.inferencer.fc.config | |
org.openrdf.sail.lucene | |
org.openrdf.sail.lucene3.config | |
org.openrdf.sail.memory |
An implementation of the RDF SAIL API that uses main memory for storage.
|
org.openrdf.sail.memory.config | |
org.openrdf.sail.nativerdf |
Native RDF storage backend.
|
org.openrdf.sail.nativerdf.config | |
org.openrdf.sail.rdbms | |
org.openrdf.sail.rdbms.mysql | |
org.openrdf.sail.rdbms.postgresql |
Modifier and Type | Method and Description |
---|---|
Sail |
SailRepository.getSail()
Gets the Sail object that is on top of the Sail stack that this repository
operates on.
|
Constructor and Description |
---|
SailRepository(Sail sail)
Creates a new repository object that operates on the supplied Sail.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NotifyingSail
An interface for an RDF Storage And Inference Layer.
|
interface |
StackableSail
An interface for Sails that can be stacked on top of other Sails.
|
Modifier and Type | Field and Description |
---|---|
protected Sail |
RDFStoreTest.sail |
protected Sail |
SailIsolationLevelTest.store |
Modifier and Type | Method and Description |
---|---|
protected abstract Sail |
RDFStoreTest.createSail()
Gets an instance of the Sail that should be tested.
|
protected abstract Sail |
InferencingTest.createSail()
Gets an instance of the Sail that should be tested.
|
protected abstract Sail |
SailIsolationLevelTest.createSail() |
protected abstract Sail |
SailConcurrencyTest.createSail() |
protected abstract Sail |
SailInterruptTest.createSail() |
Sail |
StackableSail.getBaseSail()
Gets the base Sail that this Sail works on top of.
|
Sail |
SailChangedEvent.getSail()
The Sail object that sent this event.
|
Modifier and Type | Method and Description |
---|---|
void |
InferencingTest.runTest(Sail sailStack,
String subdir,
String testName,
boolean isPositiveTest) |
void |
StackableSail.setBaseSail(Sail baseSail)
Sets the base Sail that this Sail will work on top of.
|
Modifier and Type | Method and Description |
---|---|
Sail |
SailFactory.getSail(SailImplConfig config)
Returns a Sail instance that has been initialized using the supplied
configuration data.
|
Modifier and Type | Class and Description |
---|---|
class |
Federation
Union multiple (possibly remote) Repositories into a single RDF store.
|
Modifier and Type | Method and Description |
---|---|
Sail |
FederationFactory.getSail(SailImplConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
NotifyingSailBase
SailBase is an abstract Sail implementation that takes care of common sail
tasks, including proper closing of active connections and a grace period for
active connections during shutdown of the store.
|
class |
NotifyingSailWrapper
An implementation of the StackableSail interface that wraps another Sail
object and forwards any relevant calls to the wrapped Sail.
|
class |
SailBase
SailBase is an abstract Sail implementation that takes care of common sail
tasks, including proper closing of active connections and a grace period for
active connections during shutdown of the store.
|
class |
SailWrapper
An implementation of the StackableSail interface that wraps another Sail
object and forwards any relevant calls to the wrapped Sail.
|
Modifier and Type | Method and Description |
---|---|
static <C extends Sail> |
SailUtil.findSailInStack(Sail topSail,
Class<C> sailClass)
Searches a stack of Sails from top to bottom for a Sail that is an
instance of the suppied class or interface.
|
Modifier and Type | Method and Description |
---|---|
Sail |
SailWrapper.getBaseSail() |
Sail |
DefaultSailChangedEvent.getSail() |
Modifier and Type | Method and Description |
---|---|
static <C extends Sail> |
SailUtil.findSailInStack(Sail topSail,
Class<C> sailClass)
Searches a stack of Sails from top to bottom for a Sail that is an
instance of the suppied class or interface.
|
void |
NotifyingSailWrapper.setBaseSail(Sail baseSail) |
void |
SailWrapper.setBaseSail(Sail baseSail) |
Constructor and Description |
---|
DefaultSailChangedEvent(Sail sail)
Creates a new DefaultSailChangedEvent in which all possible changes are
set to false.
|
SailWrapper(Sail baseSail)
Creates a new SailWrapper that wraps the supplied Sail.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractForwardChainingInferencer |
class |
CustomGraphQueryInferencer
A forward-chaining inferencer that infers new statements using a SPARQL or
SeRQL graph query.
|
class |
DirectTypeHierarchyInferencer
A forward-chaining inferencer that infers the direct-type hierarchy relations
sesame:directSubClassOf ,
sesame:directSubPropertyOf and
sesame:directType . |
class |
ForwardChainingRDFSInferencer
Forward-chaining RDF Schema inferencer, using the rules from the RDF Semantics
Recommendation (10 February 2004).
|
Constructor and Description |
---|
AbstractForwardChainingInferencerConnection(Sail sail,
InferencerConnection con) |
Modifier and Type | Method and Description |
---|---|
Sail |
DirectTypeHierarchyInferencerFactory.getSail(SailImplConfig config) |
Sail |
ForwardChainingRDFSInferencerFactory.getSail(SailImplConfig config) |
Sail |
CustomGraphQueryInferencerFactory.getSail(SailImplConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
LuceneSail
A LuceneSail wraps an arbitrary existing Sail and extends it with support for
full-text search on all Literals.
|
Modifier and Type | Method and Description |
---|---|
Sail |
LuceneSailFactory.getSail(SailImplConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
MemoryStore
An implementation of the Sail interface that stores its data in main memory
and that can use a file for persistent storage.
|
Modifier and Type | Method and Description |
---|---|
Sail |
MemoryStoreFactory.getSail(SailImplConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
LimitedSizeNativeStore |
class |
NativeStore
A SAIL implementation using B-Tree indexing on disk for storing and querying
its data.
|
Modifier and Type | Method and Description |
---|---|
Sail |
NativeStoreFactory.getSail(SailImplConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
RdbmsStore
Deprecated.
the RDBMS SAIL is no longer actively supported and will be
removed in a future Sesame release. Consider switching to a
different SAIL backend.
|
Modifier and Type | Class and Description |
---|---|
class |
MySqlStore
Deprecated.
the MySQL RDF store is no longer supported and will be removed in
a future Sesame release. Consider switching to a different SAIL
backend.
|
Modifier and Type | Class and Description |
---|---|
class |
PgSqlStore
Deprecated.
the PostgreSQL RDF store is no longer supported and will be
removed in a future Sesame release. Consider switching to a
different SAIL backend.
|
Copyright © 2001–2016 Aduna. All rights reserved.