An open API service indexing awesome lists of open source software.

https://github.com/grahambates/fortune-postgres-example

Example of fortune-postgres transactions issue
https://github.com/grahambates/fortune-postgres-example

Last synced: 4 months ago
JSON representation

Example of fortune-postgres transactions issue

Awesome Lists containing this project

README

        

# Steps to reproduce:

```
# Start the example server
docker-compose up

# This should initially respond OK
curl http://localhost:3000/user

# Apply some load to use up connection pool - this will eventually hang
ab -c90 -n 10000 http://localhost:3000/user

# Now all requests will time out
curl http://localhost:3000/user
```