A client for synchronous operations on a key-value store.
Provides methods to interact with a remote key-value store, allowing storage and retrieval of items within namespaced hierarchies.
client = get_sync_client(url="http://localhost:2024"))
client.store.put_item(["users", "profiles"], "user123", {"name": "Alice", "age": 30})SyncStoreClient(
self,
http: SyncHttpClient,
)| Name | Type |
|---|---|
| http | SyncHttpClient |