You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2021/11/05 16:07:50 UTC

[jena-site] 01/03: Remove references to SDB

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch sparql-apis
in repository https://gitbox.apache.org/repos/asf/jena-site.git

commit 621518276303affdf551e1f6fd21e5dd4575a009
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Fri Nov 5 08:11:46 2021 +0000

    Remove references to SDB
---
 source/documentation/notes/model-factory.md  | 4 +---
 source/documentation/ontology/__index.md     | 3 +--
 source/documentation/query/architecture.md   | 3 +--
 source/documentation/query/arq-query-eval.md | 9 ++++-----
 source/documentation/query/explain.md        | 7 +------
 source/getting_started/__index.md            | 1 -
 6 files changed, 8 insertions(+), 19 deletions(-)

diff --git a/source/documentation/notes/model-factory.md b/source/documentation/notes/model-factory.md
index 4248410..48a1b2b 100644
--- a/source/documentation/notes/model-factory.md
+++ b/source/documentation/notes/model-factory.md
@@ -23,9 +23,7 @@ no special ontology interface.
 
 ## Database model creation
 
-_Note:_ this section previously referred to creating database models
-with RDB, a now obsolete Jena features. For methods of creating models
-with [SDB](/documentation/sdb/index.html) and [TDB](/documentation/tdb/index.html)
+For methods of creating models for [TDB](/documentation/tdb/index.html)
 please see the relevant reference sections.
 
 ## Inference model creation
diff --git a/source/documentation/ontology/__index.md b/source/documentation/ontology/__index.md
index 1936801..b4e0735 100644
--- a/source/documentation/ontology/__index.md
+++ b/source/documentation/ontology/__index.md
@@ -1913,8 +1913,7 @@ model. In this section we briefly discuss using the ontology API with
 Jena's persistent database models.
 
 For information on setting-up and accessing the persistent models
-themselves, please see the
-[SDB](/documentation/sdb/index.html) and [TDB](/documentation/tdb/index.html)
+themselves, see the [TDB](/documentation/tdb/index.html)
 reference sections.
 
 There are two somewhat separate requirements for persistently
diff --git a/source/documentation/query/architecture.md b/source/documentation/query/architecture.md
index c1c9281..fa2b578 100644
--- a/source/documentation/query/architecture.md
+++ b/source/documentation/query/architecture.md
@@ -18,8 +18,7 @@ ARQ consists of the following parts:
     -   Reference engine - direct implementation of the algebra
     -   Quad engine - direct implementation of the algebra except
     -   The main engine
-    -   SDB, a SPARQL database for large-sale persistent data (external
-        system)
+    -   TDB, a SPARQL database for large-sale persistent data
 
 -   Result set handling for the SPARQL XML results format, the
     [JSON](http://json.org) and text versions.
diff --git a/source/documentation/query/arq-query-eval.md b/source/documentation/query/arq-query-eval.md
index 27781aa..9bcae56 100644
--- a/source/documentation/query/arq-query-eval.md
+++ b/source/documentation/query/arq-query-eval.md
@@ -7,7 +7,7 @@ modify query execution within ARQ. Through these mechanisms, ARQ
 can be used to query different graph implementations and to provide
 different query evaluation and optimization strategies for
 particular circumstances. These mechanisms are used by
-[TDB](../tdb) and [SDB](../sdb/).
+[TDB](../tdb).
 
 ARQ can be [extended in various ways](extension.html) to
 incorporate custom code into a query.
@@ -190,7 +190,7 @@ extensions to query execution.
 
 ARQ provides three query engine factories; the main query engine
 factory, one for a reference query engine and one to remotely
-execute a query. SDB and TDB provide their own query engine
+execute a query. TDB provides its own query engine
 factories which they register during sub-system initialization.
 Both extend the main query engine described below.
 
@@ -457,7 +457,7 @@ custom query engine and overriding `QueryEngineMain.modifyOp`:
 
 The extension may need to provide its own dataset implementation so
 that it can detect when queries are directed to its named graph
-storage. [TDB](../tdb/) and [SDB](../sdb/) are examples of this.
+storage. [TDB](../tdb/) are examples of this.
 
 ## Mixed Graph Implementation Datasets
 
@@ -500,5 +500,4 @@ as the super-class of the new operator. They can be inserted into
 the expression to be evaluated using a custom query engine to
 intercept evaluation initialization.  When evaluation of a query
 requires the evaluation of a sub-class of `OpExt`, the `eval`
-method is called. SDB uses this to introduce an operator that is
-implemented in SQL.
+method is called.
diff --git a/source/documentation/query/explain.md b/source/documentation/query/explain.md
index f543360..3720417 100644
--- a/source/documentation/query/explain.md
+++ b/source/documentation/query/explain.md
@@ -1,12 +1,7 @@
 ---
-title: explaining ARQ queries
+title: Explaining ARQ queries
 ---
 
-*This page applies to ARQ version 2.8.6 and later. In this version query
-logging was consolidated and made uniform across ARQ, SDB and TDB.
-Details of TDB logging changed to use this logging and explanation
-framework from TDB version 0.8.8.*
-
 Optimization in ARQ proceeds on two levels. After the query is parsed,
 the SPARQL algebra for the query is generated as described in the SPARQL
 specification. High-level optimization occurs by rewriting the algebra
diff --git a/source/getting_started/__index.md b/source/getting_started/__index.md
index c5523f8..c2ed47b 100644
--- a/source/getting_started/__index.md
+++ b/source/getting_started/__index.md
@@ -35,7 +35,6 @@ The following topics are covered in the documentation:
 * [How-To's](/documentation/notes/) - various topic-specific how-to documents
 * [Ontology](/documentation/ontology/) - support for handling OWL models in Jena
 * [TDB](/documentation/tdb/) - a fast persistent triple store that stores directly to disk
-* [SQL DB](/documentation/sdb/) - constructing persistent Jena models using SQL databases as the storage layer
 * [Tools](/documentation/tools/) - various command-line tools and utilities to help developers manage RDF data and other aspects of Jena
 
 <h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png" alt="jena logo">Framework Architecture</h2>