chopin-pg 0.5.21

A high-performance, asynchronous PostgreSQL driver for the Chopin framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3.8'
services:
  db:
    image: postgres:16-alpine
    environment:
      POSTGRES_USER: chopin
      POSTGRES_PASSWORD: password
      POSTGRES_DB: chopin_bench
    ports:
      - "5432:5432"
    volumes:
      - pg_data:/var/lib/postgresql/data
    command: ["postgres", "-c", "max_connections=1000", "-c", "shared_buffers=512MB"]

volumes:
  pg_data: