aioch icon indicating copy to clipboard operation
aioch copied to clipboard

Is this being maintained

Open amatai opened this issue 2 years ago • 2 comments

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?

amatai avatar Nov 05 '22 12:11 amatai

Hi.

What updates do you need?

xzkostyan avatar Nov 05 '22 13:11 xzkostyan

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]

7rick03ligh7 avatar Feb 13 '23 08:02 7rick03ligh7