#golangUnmoderated tagAll postsTrending CommunitiesSteemitCryptoAcademyNewcomers' Communityআমার বাংলা ব্লগKorea • 한국 • KR • KOSTEEM CN/中文Steem AllianceWORLD OF XPILARAVLE 일상Beauty of CreativityUkraine on SteemSCT.암호화폐.CryptoComunidad LatinaExplore Communities...#golangTrendingHotNewPayoutsMutedevrone (41)in #webdevelopment • 3 months agoRust vs. Go in 2025: An In-Depth ComparisonThe article compares Rust and Go, examining their performance, complexity, and use cases as we approach 2025. Go…evrone (41)in #web • 3 months agoGo vs Python in 2024: What to Choose?Python excels in rapid prototyping, data analysis, and ease of use, while Go offers speed, scalability, and…evrone (41)in #ecommerce • 3 months agoBest Programming Languages to Build an E-Commerce WebsiteChoosing the right programming language is key to building successful e-commerce websites, balancing factors like…evrone (41)in #enterprisedevelopment • 3 months agoThe right way to hire Golang developersLearn how to hire Golang developers effectively. This guide explores in-house, freelance, and outsourced options…evrone (41)in #backend • 3 months agoDeveloping a High-Load Event Processing Service for a Major ClientEvrone developed a high-load data processing system for SberMarketing, capable of handling 100,000 requests per…wbf168888 (20)in #golang • 4 months ago在 Golang 中使用 Apache Kafka:从入门到实践一、准备工作 在开始之前,请确保已经安装并运行 Kafka 和 Zookeeper。可以参考之前的文章来安装和启动 Kafka。 安装 Golang Kafka 客户端 Golang 社区提供了许多 Kafka 客户端库,其中…wbf168888 (20)in #golang • 4 months ago深入解析 Golang 中的 sync.Mutex 和 sync.RWMutex引言 并发编程的挑战:在并发编程中,多个 Goroutines 同时访问共享资源时可能会引发数据竞争和不一致的问题。锁的作用:锁是一种常见的同步原语,用于确保同时只有一个 Goroutine 能够访问共享资源。 1.…cccoinx (29)in #cn • 8 months agogolang的GMP调度浅析GMP数据结构 G: 表示goroutine,包含了协程的状态,栈,上下文等信息。(基础大小2kb,可理解为打包代码段) M: 表示machine, 也就是工作线程,就是真正用来执行代码的线程。…cccoinx (29)in #cn • 8 months agogolang内存管理初探内存的理解 可以把内存看成一个数组,内存地址可以看成是数组的下标。 CPU执行指令时,通过内存地址(虚拟内存)将物理内存上的数据载入到寄存器执行机器指令。…krishu-g (77)in #nodejs • 8 months agoComparing Node.js and Go (Golang): A Comprehensive AnalysisComparing Node.js and Go (Golang): A Comprehensive Analysis In the world of modern software development, choosing…cccoinx (29)in #cn • 8 months agogo的GC理解GC实现方式有哪些 GC (Garbage Collection)泛指垃圾回收机制,在高级编程语言中,实现自动化的内存管理(内存分配与回收)。 自动GC…cccoinx (29)in #cn • 9 months agogo程序启动过程总结Go程序启动流程 大体流程主要是: 编译 -> 加载准备 (初始化环境:内存分配器,调度器,垃圾回收器等模块) -> 运行 (调用main函数) -> 程序退出(资源释放,关闭协程等)。 源代码调试 func main() {cccoinx (29)in #cn • 9 months agogolang基础面试题(2)函数调用时struct参数传递问题 在调用一个函数,入参是struct类型对象时候,是进行传值还是引用的传递? 在Go中,函数的参数传递都是 值传递 ,并且传递的实参数都是原始数据的一份拷贝;…cccoinx (29)in #cn • 9 months agogolang基础面试题(1)Go包管理的方式有哪些 GOPATH: go version < Go1.5 通过统一包存放的路径实现包管理;不支持依赖包的版本控制。 GOPATH 模式…cccoinx (29)in #cn • 10 months agogolang内置net/rpc功能的使用关于go sdk中的rpc的实现源代码参见google open source go/net/rpc 远程过程调用(Remote Procedure Call,RPC)是一个计算机通信协议…thomasbrown001 (29)in #golang • 11 months agoMastering Golang: Unraveling Advanced Concepts for Seamless Assignment CompletionWelcome back, fellow enthusiasts of Golang programming! Today, we delve into the depths of advanced Golang concepts…edubuild (33)in #googles • last yearLearn How to Code: Google's Go (Golang) Programming Language in Vadodara, IndiaThis course is the ultimate comprehensive resource for learning the Go Programming Language. This course is perfect…jonathanluca (34)in #golang • 2 years agoGolang certificationGolang is another term for Go programming language. Golang certification course that can be learned by anyone anyone…rnkchr0 (35)in #golang • 2 years agoCompare Strings in GoLang: Tips, Techniques, and ExamplesDiscover various methods to compare strings in GoLang with examples, benchmarks, and best practices. Boost your GoLang…atharvapandey (25)in #golang • 2 years agoCreating a Custom Logger in Go with Zerolog: A Step-by-Step GuideIntroduction Logging is an essential part of any software application, as it allows developers to track and debug…