tensorstore.Spec.kvstore : KvStore.Spec | None

Spec of the associated key-value store used as the underlying storage.

Equal to None if the driver does not use a key-value store or the key-value store has not been specified.

Example

>>> spec = ts.Spec({
...     'driver': 'n5',
...     'kvstore': {
...         'driver': 'memory',
...         'path': 'abc/',
...     },
... })
>>> spec.kvstore
KvStore.Spec({'driver': 'memory', 'path': 'abc/'})