summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNicholas Car <nicholas.car@surroundaustralia.com>2020-08-27 13:33:35 +1000
committerGitHub <noreply@github.com>2020-08-27 13:33:35 +1000
commit4be27490261cc18ccf2de19827aa83cd832b4305 (patch)
tree2386051278e56c73f72ee7c0eacd0ccfc6083411 /docs
parent930340f61c17171011208e7fb42ae4051bc722c6 (diff)
parent860628cd156fb88cb8c810e914a883539af6aaa8 (diff)
downloadrdflib-4be27490261cc18ccf2de19827aa83cd832b4305.tar.gz
Merge pull request #1133 from ashleysommer/in_memory_store
Discussion around new dict-based store implementation
Diffstat (limited to 'docs')
-rw-r--r--docs/persistence.rst4
-rw-r--r--docs/plugin_stores.rst7
-rw-r--r--docs/univrdfstore.rst2
3 files changed, 7 insertions, 6 deletions
diff --git a/docs/persistence.rst b/docs/persistence.rst
index fbddf38f..bd270a14 100644
--- a/docs/persistence.rst
+++ b/docs/persistence.rst
@@ -19,8 +19,8 @@ this API for a different store.
Stores currently shipped with core RDFLib
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-* :class:`Memory <rdflib.plugins.memory.IOMemory>` (not persistent!)
-* :class:`~rdflib.plugins.sleepycat.Sleepycat` (on disk persistence via Python's :ref:`bsddb` or :ref:`bsddb3` packages)
+* :class:`Memory <rdflib.plugins.stores.memory.Memory>` (not persistent!)
+* :class:`~rdflib.plugins.stores.sleepycat.Sleepycat` (on disk persistence via Python's :ref:`bsddb` or :ref:`bsddb3` packages)
* :class:`~rdflib.plugins.stores.sparqlstore.SPARQLStore` - a read-only wrapper around a remote SPARQL Query endpoint.
* :class:`~rdflib.plugins.stores.sparqlstore.SPARQLUpdateStore` - a read-write wrapper around a remote SPARQL query/update endpoint pair.
diff --git a/docs/plugin_stores.rst b/docs/plugin_stores.rst
index 68063577..a936c54e 100644
--- a/docs/plugin_stores.rst
+++ b/docs/plugin_stores.rst
@@ -10,9 +10,10 @@ Name Class
================= ============================================================
Auditable :class:`~rdflib.plugins.stores.auditable.AuditableStore`
Concurrent :class:`~rdflib.plugins.stores.concurrent.ConcurrentStore`
-IOMemory :class:`~rdflib.plugins.memory.IOMemory`
+SimpleMemory :class:`~rdflib.plugins.stores.memory.SimpleMemory`
+Memory :class:`~rdflib.plugins.stores.memory.Memory`
SPARQLStore :class:`~rdflib.plugins.stores.sparqlstore.SPARQLStore`
SPARQLUpdateStore :class:`~rdflib.plugins.stores.sparqlstore.SPARQLUpdateStore`
-Sleepycat :class:`~rdflib.plugins.sleepycat.Sleepycat`
-default :class:`~rdflib.plugins.memory.IOMemory`
+Sleepycat :class:`~rdflib.plugins.stores.sleepycat.Sleepycat`
+default :class:`~rdflib.plugins.stores.memory.Memory`
================= ============================================================
diff --git a/docs/univrdfstore.rst b/docs/univrdfstore.rst
index f6822e5b..dfb96d81 100644
--- a/docs/univrdfstore.rst
+++ b/docs/univrdfstore.rst
@@ -344,7 +344,7 @@ These are a list of additional kinds of RDF terms (all of which are special Lite
Namespace Management Interfaces
===============================
-The following namespace management interfaces (defined in Graph) could be implemented in the RDF store. Currently, they exist as stub methods of :class:`~rdflib.store.Store` and are defined in the store subclasses (e.g. :class:`~rdflib.store.IOMemory`):
+The following namespace management interfaces (defined in Graph) could be implemented in the RDF store. Currently, they exist as stub methods of :class:`~rdflib.store.Store` and are defined in the store subclasses (e.g. :class:`~rdflib.plugins.store.memory.Memory`):
.. automethod:: rdflib.store.Store.bind
:noindex: