ref: master
server/db/connection.go
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 |
/** * Yats - yats * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Paolo Lulli <kevwe.com> * @copyright Paolo Lulli 2024 */ package db import ( "github.com/gocql/gocql" "yats-server/config" ) var Session *gocql.Session func InitializeDb(configuration config.Configuration) *gocql.Session { cluster := gocql.NewCluster(configuration.DbHost) cluster.Authenticator = gocql.PasswordAuthenticator{Username: configuration.DbUsername, Password: configuration.DbPassword} cluster.Keyspace = configuration.DbName Session, _ := cluster.CreateSession() //Session.Query("CONSISTENCY LOCAL_QUORUM").Exec() return Session } |