summaryrefslogtreecommitdiff
path: root/docs/persistence.rst
diff options
context:
space:
mode:
authorAshley Sommer <ashleysommer@gmail.com>2020-08-19 13:30:44 +1000
committerAshley Sommer <ashleysommer@gmail.com>2020-08-19 13:30:44 +1000
commit860628cd156fb88cb8c810e914a883539af6aaa8 (patch)
tree644077f5f7761cbab21d65c00060199fc842c070 /docs/persistence.rst
parentc0c6630c37fc20350f69452cf77fd5642a02e2da (diff)
downloadrdflib-860628cd156fb88cb8c810e914a883539af6aaa8.tar.gz
Removed IOMemory store
Renamed Memory2 to Memory Renamed Memory1 to SimpleMemory Set default store to new Memory Fixed tests Fixed docs
Diffstat (limited to 'docs/persistence.rst')
-rw-r--r--docs/persistence.rst4
1 files changed, 2 insertions, 2 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.