ConnectionConfig
Common configuration for database connections to both Vert.x SqlClient and Exposed Database, currently supporting both TCP socket and Unix domain socket connections.
Use ConnectionConfig.Socket for standard TCP/IP connections, or ConnectionConfig.UnixDomainSocketWithPeerAuthentication for Unix domain socket connections with peer authentication (experimental, primarily tested with PostgreSQL on Linux).
See also
Inheritors
Types
Link copied to clipboard
class UnixDomainSocketWithPeerAuthentication(val path: String, val role: String, val database: String) : ConnectionConfig
Unix domain socket connection configuration with peer authentication.