aboutsummaryrefslogtreecommitdiffhomepage
path: root/storage/storage.go
blob: ebefe912132fc919021c940afddfe553081fc3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package storage

import (
	"database/sql"
	"log"

	_ "github.com/lib/pq"
)

type Storage struct {
	db *sql.DB
}

func (s *Storage) Close() {
	s.db.Close()
}

func NewStorage(databaseUrl string, maxOpenConns int) *Storage {
	db, err := sql.Open("postgres", databaseUrl)
	if err != nil {
		log.Fatalf("Unable to connect to the database: %v", err)
	}

	db.SetMaxOpenConns(maxOpenConns)
	db.SetMaxIdleConns(2)

	return &Storage{db: db}
}