Class JenaOntoDriverProperties
java.lang.Object
cz.cvut.kbss.ontodriver.jena.config.JenaOntoDriverProperties
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Plain file storage.static final String
Jena Fuseki server.static final String
In-memory storage.static final String
Represents parameter specify isolation strategy to be used.static final String
Represents parameter specifying type of storage to be used by this driver.static final String
Parameter specifying whether the default graph should be treated as union of all the named graphs and the default graph.static final String
Default storage access isolation strategy.static final String
Storage access isolation strategy.static final String
Jena TDB storage.static final String
Jena TDB2 storage. -
Method Summary
-
Field Details
-
JENA_ISOLATION_STRATEGY
Represents parameter specify isolation strategy to be used.Possible values:
- See Also:
-
READ_COMMITTED
Default storage access isolation strategy.Represents situation where transactions keep a list of their changes, but the read from a shared connector, meaning when a transaction commits changes, other transactions immediately see them.
- See Also:
-
SNAPSHOT
Storage access isolation strategy.Represents situations where each transaction acquires a complete snapshot of the repository and works with it.
- See Also:
-
JENA_STORAGE_TYPE
Represents parameter specifying type of storage to be used by this driver.Possible values are:
- See Also:
-
FILE
Plain file storage.- See Also:
-
IN_MEMORY
In-memory storage.- See Also:
-
TDB
Jena TDB storage.- See Also:
-
TDB2
Jena TDB2 storage.- See Also:
-
FUSEKI
Jena Fuseki server.- See Also:
-
JENA_TREAT_DEFAULT_GRAPH_AS_UNION
Parameter specifying whether the default graph should be treated as union of all the named graphs and the default graph.Default graph being a union of all graphs is typical for storages like RDF4J, GraphDB, Virtuoso (querying without graph queries across all graphs).
This parameter influences only querying/reading. It has no effect on write operations, which work with the default graph as is in Jena.
- See Also:
-