Build REST API with Go Fiber and PlanetScale - Part 2

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • go-sql-driver/mysql

    Go MySQL Driver is a MySQL driver for Go's (golang) database/sql package (by go-sql-driver)

  • package models import ( "gorm.io/driver/mysql" "gorm.io/gorm" ) var DB *gorm.DB func ConnectDatabase() { // refer https://github.com/go-sql-driver/mysql#dsn-data-source-name for details dsn := "root:@tcp(127.0.0.1:3309)/fiber-pscale?charset=utf8mb4&parseTime=True&loc=Local" database, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) if err != nil { panic("failed to connect database") } // Migrate the users table database.AutoMigrate(&User{}) DB = database }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Question about inserting date into MySQL?

    1 project | /r/golang | 15 Nov 2022
  • Stuck $GOPATH/go.mod exists but should not

    1 project | /r/golang | 26 Aug 2022
  • I Could Not Run a Sample Code to Use MySQL with Go on Docker (Error 1064)

    1 project | dev.to | 1 Jul 2022
  • Connecting to mysql returns Acces denied. Can only connect to the DB through dbeaver using a specific driver properties configuration.

    1 project | /r/golang | 15 Dec 2021
  • Which SQL driver to use with Postgres

    7 projects | /r/golang | 27 Nov 2021