#golangUnmoderated tagAll postsExplore CommunitiesTrending CommunitiesNewcomers' CommunitySteemitCryptoAcademySteemit Feedbackআমার বাংলা ব্লগKorea • 한국 • KR • KOSteem AllianceSTEEM CN/中文Steem POD TeamAVLE 일상WORLD OF XPILARComunidad LatinaBeauty of Creativity#golangTrendingHotNewPayoutsMutedevrone (41)in #it-consulting • 21 hours agoWhy Teams Migrate from Java to Go — Benefits, Trade-Offs, and the Right TimeThis article examines why many development teams are migrating from Java to Go, highlighting Go’s advantages like…bitacademyweb (53)in #kaspa • 2 days agoKaspa (KAS) Rebounds Strongly After Rust RewriteKAS shows signs of accumulation and a +8.34% rally as its team completes an epic architectural redesign, promising to…gogo579 (34)in #ccp • 4 days ago移民法庭的庇护程序有哪些步骤?移民法庭的庇护程序有哪些步骤?urussword377 (32)in #python • 4 days agoGo vs Python: Pros, Cons, and Real-World ApplicationsBy 2025, over 75% of new software projects will prioritize scalability and speed as their core requirements. That…evrone (41)in #golang • 7 days agoMigrating a Project from .NET to Golang: Reasons, Benefits, and AlternativesMigrating a project from .NET to Golang can boost performance, scalability, and efficiency—especially in cloud-native…sun-developer (41)in #techclub • 3 months agoSLC-S23W6- Create Story Creating Mistake checking and translatation Website CompleteAslamualikum I welcome you to the Steem Learning Week 06 and the Technical Club.Today we will learn something new…kafio (73)in #techclub • 3 months agoSLC-S23W6 - Backend & golang- Candidate Evaluation PlatformWelcome to the final week of our Tech & Dev Club learning series! Over the past five weeks, we've covered project…evrone (41)in #webdevelopment • 6 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 • 7 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 • 7 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 • 7 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 • 7 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 • 8 months ago在 Golang 中使用 Apache Kafka:从入门到实践一、准备工作 在开始之前,请确保已经安装并运行 Kafka 和 Zookeeper。可以参考之前的文章来安装和启动 Kafka。 安装 Golang Kafka 客户端 Golang 社区提供了许多 Kafka 客户端库,其中…wbf168888 (20)in #golang • 8 months ago深入解析 Golang 中的 sync.Mutex 和 sync.RWMutex引言 并发编程的挑战:在并发编程中,多个 Goroutines 同时访问共享资源时可能会引发数据竞争和不一致的问题。锁的作用:锁是一种常见的同步原语,用于确保同时只有一个 Goroutine 能够访问共享资源。 1.…cccoinx (29)in #cn • last yeargolang的GMP调度浅析GMP数据结构 G: 表示goroutine,包含了协程的状态,栈,上下文等信息。(基础大小2kb,可理解为打包代码段) M: 表示machine, 也就是工作线程,就是真正用来执行代码的线程。…cccoinx (29)in #cn • last yeargolang内存管理初探内存的理解 可以把内存看成一个数组,内存地址可以看成是数组的下标。 CPU执行指令时,通过内存地址(虚拟内存)将物理内存上的数据载入到寄存器执行机器指令。…krishu-g (77)in #nodejs • last yearComparing 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 • last yeargo的GC理解GC实现方式有哪些 GC (Garbage Collection)泛指垃圾回收机制,在高级编程语言中,实现自动化的内存管理(内存分配与回收)。 自动GC…cccoinx (29)in #cn • last yeargo程序启动过程总结Go程序启动流程 大体流程主要是: 编译 -> 加载准备 (初始化环境:内存分配器,调度器,垃圾回收器等模块) -> 运行 (调用main函数) -> 程序退出(资源释放,关闭协程等)。 源代码调试 func main() {cccoinx (29)in #cn • last yeargolang基础面试题(2)函数调用时struct参数传递问题 在调用一个函数,入参是struct类型对象时候,是进行传值还是引用的传递? 在Go中,函数的参数传递都是 值传递 ,并且传递的实参数都是原始数据的一份拷贝;…