tensorstore.KvStore.Spec.base : KvStore.Spec | None

Underlying key-value store, if this is a key-value store adapter.

Adapter key-value stores include:

For regular, non-adapter key-value stores, this is None.

Example

>>> spec = ts.KvStore.Spec({'driver': 'ocdbt', 'base': 'memory://'})
>>> spec.base
KvStore.Spec({'driver': 'memory'})

See also