Go Library
4.13K subscribers
20 photos
63 files
806 links
Go (Golang) Library

Реклама: @ostinostin
Контент: @mxssl
Download Telegram
Go memory metrics demystified

For engineers in charge of supporting Go applications, diagnosing and resolving memory issues such as OOM kills or memory leaks can be a daunting task. Practical and easy-to-understand information about Go memory metrics is hard to come by, so it’s often challenging to reconcile your system metrics—such as process resident set size (RSS)—with the metrics provided by the old runtime.MemStats, with the newer runtime/metrics, or with profiling data.


https://www.datadoghq.com/blog/go-memory-metrics
goja

Goja is an implementation of ECMAScript 5.1 in pure Go with emphasis on standard compliance and performance.


https://github.com/dop251/goja
bluerpc

Golang library for end-to-end Go-Typescript type safety.


https://github.com/blue-rpc/bluerpc
Getting started with otelsql, the OpenTelemetry instrumentation for Go SQL

otelsql is an instrumentation library for the database/sql library of the Go programming language. It generates traces and metrics from the application when interacting with databases. By doing that, the library allows you to identify errors or slowdowns in your SQL queries that potentially impact the performance of your application.


https://opentelemetry.io/blog/2024/getting-started-with-otelsql
More powerful Go execution traces

https://go.dev/blog/execution-traces-2024
Testing out Profile-Guided Optimization on Dolt's SQL Benchmarks

https://www.dolthub.com/blog/2024-02-02-profile-guided-optimization
Profile Guided optimisation

Learn how PGO improves use of inlining and CPU instruction caches. I show how to get biggest boost for your projects by using the right CPU profile


https://andrewwphillips.github.io/blog/pgo.html
Context Control in Go

Best practices for handling context plumbing.


https://zenhorace.dev/blog/context-control-go
Type assertion vs type switches in Go

https://rednafi.com/go/type_assertion_vs_type_switches
integresql

IntegreSQL manages isolated PostgreSQL databases for your integration tests.


https://github.com/allaboutapps/integresql
How I write HTTP services in Go after 13 years

This post covers a range of topics related to building services in Go, including:

- Structuring servers and handlers for maximum maintainability
- Tips and tricks for optimizing for a quick startup and graceful shutdown
- How to handle common work that applies to many types of requests
- Going deep on properly testing your services
- From small projects to large, these practices have stood the test of time for me, and I hope they will for you too.


https://grafana.com/blog/2024/02/09/how-i-write-http-services-in-go-after-13-years
Reducing Go Dependencies

This article is a practical look at reducing dependencies in Go libraries. We'll start by looking at how Go dependencies work, then go into a few ideas around reducing dependencies. Finally, we'll go into a few ways I've implemented these ideas in Huma and the results. Hopefully you can use some of the same techniques in your own projects.


https://dgt.hashnode.dev/reducing-go-dependencies
Feeding a hungry mouse using Go and chromedp

The backend engineering team at Nurdsoft is a fan of Go, we use it for almost all of our backend services, its easier to get started even our Frontend engineering team can write Go!. This article is about how we can use Go to automate a browser virtually acting like a real user.


https://www.pacenthink.io/post/feeding-a-hungry-mouse-using-chromedp-and-golang
Start With the Go Standard Library

When starting a project, new Gophers often ask the following questions.

- What logger should I use?
- What web framework should I use?
- What object–relational mapping (ORM) should I use?

These questions are well-intentioned but they all miss a key aspect about Go.


https://matthewsanabria.dev/posts/start-with-the-go-standard-library
Calling C from Go

As someone who works a lot with operating systems, there are many scenarios that require loading C libraries. Plugins that use shared libraries, low-level device APIs, random Linux utilities. Despite modern options for interprocess communication, sometimes you get a header file and a shared object and have to run with it.

This post covers cgo, Go’s C interoperability layer.


https://ericchiang.github.io/post/cgo
fuego

Go framework generating OpenAPI documentation from code. Inspired by Nest, built for Go developers.


https://github.com/go-fuego/fuego
Memory leaks in Go

In this post, we are going to have a look at

- What is a memory leak
- Why are memory leaks bad
- Common causes for memory leaks in Go
- Methods for identifying memory leaks
- Investigate memory leaks


https://dev.to/gkampitakis/memory-leaks-in-go-3pcn
hatchet

Hatchet replaces difficult to manage legacy queues or pub/sub systems so you can design durable workloads that recover from failure and solve for problems like concurrency, fairness, and rate limiting. Instead of managing your own task queue or pub/sub system, you can use Hatchet to distribute your functions between a set of workers with minimal configuration or infrastructure.


https://github.com/hatchet-dev/hatchet