#Golang

104 articles

03 How To Used Query Parameter in Golang

03 How To Used Query Parameter in Golang

Introduction to Query Parameters Query parameters are one of the features of http that we usually use to send data from the client to the server.

02 How to Used HTTP Test in Golang

02 How to Used HTTP Test in Golang

Introduction to HTTP Testing HTTP Test in Golang has been provided with a special package for creating unit tests for Web features.

01 Introduction Golang Web Server

01 Introduction Golang Web Server

Web Introduction The web is a collection of information available on a computer that is connected directly via the internet.

Introduction and Implementation of Golang Embed

Introduction and Implementation of Golang Embed

Introduction to Embed Packages Since Golang released version 1.16 there is a new feature called Embed.

Get to know the Repository Pattern in Golang

Get to know the Repository Pattern in Golang

In the book Domain-Driven Design, Eric Evans explains that Repository is a mechanism for encapsulating storage, retrieval and search behaviour, which emulates a collection of objects

How To Integrate Golang with MySQL Database

How To Integrate Golang with MySQL Database

Introduction to Package Database In Golang programming, by default it has a package called database.

Recognizing Package Context With Timeout In Golang

Recognizing Package Context With Timeout In Golang

Package introduction context.WithTimeout In the previous article we learned context.WithCancel where we manually send the cancel signal from context.

Getting to Know Package Context With Cancel On Golang

Getting to Know Package Context With Cancel On Golang

Package introduction context.WithCancel Context which can add values, we can also add cancel signals to the context.

Get to know Package Context With Value in Golang

Get to know Package Context With Value in Golang

Introduction to the context.WithValue package At the beginning of the context explanation, we know that the context will be created for the first time during initialization using context.

Getting to Know Package Context in Golang

Getting to Know Package Context in Golang

Introduction to package context Context is a package that can store and carry data values, timeout signals and deadline signals.

Get to know the Package Ticker in Golang

Get to know the Package Ticker in Golang

Introduction to the time.Ticker package This Golang package is a package that is used to repeat certain events which will continue to be repeated for a certain time.

Get to know the Package Timer in Golang

Get to know the Package Timer in Golang

Introduction to the time.Timer package time.Timer is a package that deals with times or events that will occur when the process is executed.