Stevan Milic

Results 29 comments of Stevan Milic

If I recall correctly, I run a profiler when pushing ~100k elements on a VM, so that is accumulated time. My mistake for not stating that in the post. When...

`async` and `await` are reserved keywords in Python 3.7, thus the error. I suggest using [sync_to_async ](https://github.com/django/asgiref/blob/master/asgiref/sync.py#L104) that Andrew wrote.

1. You don't need `eventlet` loop 2. `faust_agent.send` is already using async library, so no need to _port_ it Example: ```python @app.agent() async def add_account(accounts: StreamT[AccountRecord]): async for account in...

sure, I'll port the PR over there

@ruifm can you check this PR? 🙏🏻

This could be implemented now, since https://github.com/neovim/neovim/pull/25209 has been merged.

Is it possible to perform introspection manually? Without waiting for the query to be performed? Right now we need to manually execute the query in order to cache introspection. `jit...

@elprans is it possible to execute SQL query without going through the prepare statement flow? It's rather a blocker for high freq apps to use asyncpg with enums if you...

@karb94 I've made a PR to handle the error gracefully, it would be great if you could take a look 🙏🏻