roundabout
Postgres connection pooler
File Explorer
- go.yml
- receiver.go
- sender.go
- backend.go
- config.go
- preambler.go
- receiver.go
- sender.go
- frontend.go
- manager.go
- pool.go
- cond.go
- misc.go
- .gitignore
- docker-compose.yml
- go.mod
- go.sum
- LICENSE
- main.go
- README.md
- roundabout.yml
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
go run
View Details ▼
go run
Compile and run Go code without saving a binary.
go run {{path/to/file.go}}
Run a Go file:
go run {{path/to/package}}
Run a main Go package:
psql
View Details ▼
psql
PostgreSQL client.
psql {{database}}
Connect to the database. By default, it connects to the local socket using port 5432 with the currently logged in user:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{database}}
Connect to the database on given server host running on given port with given username, without a password prompt:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{[-W|--password]}} {{database}}
Connect to the database; user will be prompted for password:
// repository documentation
Was this content helpful?
(0 ratings)
