Sha256: c13877bf09142d44194e9e554acad5012c5d292d9077474305dda619dd695bde
Contents?: true
Size: 1 KB
Versions: 4
Compression:
Stored size: 1 KB
Contents
require "pg" require "connection_pool" module GitLab module Monitor module Database # An abstract class for interacting with DB # # It takes a connection string (e.g. "dbname=test port=5432") class Base def self.connection_pool @connection_pool ||= Hash.new do |h, connection_string| h[connection_string] = ConnectionPool.new(size: 3, timeout: 5) do PG.connect(connection_string) end end end def initialize(args) @connection_string = args[:connection_string] end def run fail NotImplemented end def connection_pool self.class.connection_pool[@connection_string] end def with_connection_pool connection_pool.with do |conn| begin yield conn rescue PG::UnableToSend => e conn.reset raise e end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems