aioch
aioch copied to clipboard
Is this being maintained
Is the async version of the driver being maintained?
clickhouse-client
which is great and is being updated and also recommended by many.
But, is this async wrapper being updated ? Does it need the updates?
Hi.
What updates do you need?
Hi.
What updates do you need?
For example: fetching multiple rows without loading them all into memory at once like in aiochclient https://github.com/maximdanilchenko/aiochclient
example of usage in this lib:
async for row in client.iterate(
"SELECT number, number*2 FROM system.numbers LIMIT 10000"
):
assert row[0] * 2 == row[1]