diff options
| author | Ashley Sommer <ashleysommer@gmail.com> | 2020-08-19 13:30:44 +1000 |
|---|---|---|
| committer | Ashley Sommer <ashleysommer@gmail.com> | 2020-08-19 13:30:44 +1000 |
| commit | 860628cd156fb88cb8c810e914a883539af6aaa8 (patch) | |
| tree | 644077f5f7761cbab21d65c00060199fc842c070 /docs | |
| parent | c0c6630c37fc20350f69452cf77fd5642a02e2da (diff) | |
| download | rdflib-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')
| -rw-r--r-- | docs/persistence.rst | 4 | ||||
| -rw-r--r-- | docs/plugin_stores.rst | 7 | ||||
| -rw-r--r-- | docs/univrdfstore.rst | 2 |
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: |
