How can "let's go to Golang" to transfer process resources and set the number of available CPU cores

How can "let's go to Golang" to transfer process resources and set the number of available CPU cores Previously, I learned about the basic knowledge of the collaboration process, the CPS concurrency model, and the million level concurrency of Golang. Let's transfer the collaboration resources and set the number of available CPU cores ...

Posted by fewtrem on Mon, 03 Jan 2022 01:51:52 +0100

[Go language core manual 9] mutex

9.1 basic knowledge Locking and unlocking of write operations, referred to as "write locking" and "write unlocking": func (*RWMutex)Lock() func (*RWMutex)Unlock() Locking and unlocking of read operations are referred to as "read locking" and "read unlocking": func (*RWMutex)RLock() func (*RWMutex)RUnl ...

Posted by Coruba67 on Sun, 02 Jan 2022 21:30:25 +0100

Teach you how to import the third-party library of Go language

Teach you how to import the third-party library of Go language 1, Get using go get The go command go get allows us to quickly and easily download or update the go language pack and its dependent files from the network, compile and install them. First enter go --help in command line mode to view the following information. Go is a tool for ma ...

Posted by RSprinkel on Sun, 02 Jan 2022 18:25:04 +0100

Basic types and function usage of go

Basic types and function usage of go 1, go language introduction 1 go language introduction Go, or Golang, is a programming language officially disclosed by Google in November 2009. It is characterized by simple syntax and fast speed. Go is a static (compiled) strongly typed language and a weakly typed language different from analytical langua ...

Posted by installer69 on Sun, 02 Jan 2022 18:04:30 +0100

Combing about ConText in GoFrame framework

What is Context? Context refers to the context of the standard library Context is an interface object, which is often used for asynchronous IO control and the transfer of context process variables. In GoFrame, context is mainly used to share data between processes. What's the use of Context? GoFrame is a network application development frame ...

Posted by Maracles on Sat, 01 Jan 2022 19:59:25 +0100

Go language learning notes -- structure and object-oriented programming

A structure is a data set composed of a series of data of the same type or different types. The type in the structure can be arbitraryThe storage space of the structure is continuousStructure is used to express all or part of the attributes of a thingYou can use structs to implement object orientation definition type Type name struct { Fiel ...

Posted by oaf357 on Fri, 31 Dec 2021 19:50:54 +0100

[pit you may step on when you get started-02]

Go language is a simple and interesting programming language. Like other languages, it will inevitably encounter many pits when used, but most of them are not the design defects of go itself. If you have just moved to go from another language, this article may help you. Designed to help you skip these pits and reduce a lot of debugging time. G ...

Posted by MVSS on Fri, 31 Dec 2021 13:42:37 +0100

There is no one of the simplest service response time optimization methods

Preface - From Wan Junfeng Kevin The average delay of the service is basically about 30ms. One of the very big prerequisites is that we make extensive use of MapReduce technology, so that even if our service calls many services, it often depends only on the duration of the slowest request. For your existing services, you do not need to optimi ...

Posted by twistisking on Thu, 30 Dec 2021 20:13:38 +0100

GoFrame framework: add Prometheus monitoring Middleware

introduce Through a complete example, Prometheus monitoring middleware is added to the micro service based on GoFrame framework. What is Prometheus monitoring interceptor / Middleware? The monitoring interceptor will record Prometheus Metrics for each API request. We will use rk-boot To start the micro service of GoFrame framework. ...

Posted by bungychicago on Thu, 30 Dec 2021 17:10:43 +0100

Implementation of sword finger offer go version Chapter 3: high quality code

Main purpose of this chapter It mainly focuses on high-quality code, completeness, standardization and robustness.The writing of test cases is usually done hastily in order to complete the unit test coverage. After studying this chapter, we can find that our previous test cases are very poor in practicability. There are only normal cases, and ...

Posted by DeathStar on Wed, 29 Dec 2021 13:01:57 +0100