Results 5 issues of Jeff Wen

```python async with aiofiles.open(fileName) as f: i = 0 async for line in f: i += 1 print(i, len(line)) ``` Memory usage grows like there's no tomorrow. Using explicit executor...

I am using sub/pub feature to do websocket communication. I find that a subscribe connection is never recycled, which lead to this `NoAvailableConnectionsInPoolError` error. ```python3 subscriber = await request.app.redis.start_subscribe() subscriber.subscribe(['history'])...

I am hosting integram on my own server. GET request to `/gitlab/healthcheck` is recursively redirected to *itself*. ``` version: "3.2" services: mongo: image: mongo:3.4 networks: - lab volumes: - /home/integram/mongo:/data/db...

* **asyncpg version**: 0.15.0 * **PostgreSQL version**: 10.3 * **local PostgreSQL**: * **Python version**: 3.6.5 * **Platform**: Ubuntu 14.04.5 * **Do you use pgbouncer?**: no * **Did you install asyncpg...