New: golangAll contenthive-129948hive-196917krhive-150122hive-166405hive-180932zzansteemhive-185836hive-188619hive-144064hive-183959hive-101145hive-183397uncommonlabhive-103599photographyhive-139150hive-180301hive-145157hive-109690hive-170554steemitbitcoincryptidhunterTrendingNewHotLikershuangjin (31)in ccp • 8 days ago习近平与他的情人们🇺🇸中共掘墓人相关🔗🇺🇸: 🇺🇸中共掘墓人 Mirror🇺🇸 🇺🇸中共掘墓人 Steemit🇺🇸 🇺🇸中共掘墓人 odysee🇺🇸 🇺🇸中共掘墓人 Ecency 🇺🇸 🇺🇸中共掘墓人 Hey🇺🇸 🇺🇸中共掘墓人 Diamond🇺🇸 🇺🇸中共 掘 墓 人 📥 🇺🇸:…evrone (41)in web-development • 10 days agoTop Golang Web Frameworks of 2025: Features, Use Cases, and Performance ComparisonThis article explores the top Golang web frameworks of 2025, comparing their features, use cases, and performance. From lightweight routers to full-stack solutions, frameworks like Gin, Echo, Fiber…evrone (41)in it-consulting • 17 days 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 better performance, simpler syntax, efficient concurrency, and ease of deployment.…bitacademyweb (54)in kaspa • 17 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 be the fastest and most decentralized PoW in history. In a promising turn for…gogo579 (34)in ccp • 19 days ago移民法庭的庇护程序有哪些步骤?移民法庭的庇护程序有哪些步骤?urussword377 (32)in python • 20 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 means your choice of programming language is more critical than ever. Go and Python…evrone (41)in golang • 22 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 and microservices-based applications. Golang’s strengths include speed…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, just like in our previous posts in this same club.In his previous posts, we…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 planning, containerization with Docker, frontend development with React, and…evrone (41)in webdevelopment • 7 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 excels in simplicity, readability, and rapid development, making it ideal for…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 performance for high-load systems. Python dominates in popularity and demand, but Go's…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 scalability, security, ease of use, and performance. Popular choices include…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, highlighting Go’s simplicity, built-in frameworks, and ideal use cases. Evrone…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 second. Designed in Python with Granian for speed, the service standardizes, enriches…wbf168888 (20)in golang • 8 months ago在 Golang 中使用 Apache Kafka:从入门到实践一、准备工作 在开始之前,请确保已经安装并运行 Kafka 和 Zookeeper。可以参考之前的文章来安装和启动 Kafka。 安装 Golang Kafka 客户端 Golang 社区提供了许多 Kafka 客户端库,其中 sarama 是一个非常流行的选择。我们将使用 sarama 来与 Kafka 进行交互。 使用以下命令安装 sarama: go get…wbf168888 (20)in golang • 8 months ago深入解析 Golang 中的 sync.Mutex 和 sync.RWMutex引言 并发编程的挑战:在并发编程中,多个 Goroutines 同时访问共享资源时可能会引发数据竞争和不一致的问题。锁的作用:锁是一种常见的同步原语,用于确保同时只有一个 Goroutine 能够访问共享资源。 1. sync.Mutex 的基本概念 Mutex 简介:Mutex 是互斥锁,用于保护共享资源。通过锁定和解锁操作,确保同一时间只有一个 Goroutine…cccoinx (29)in cn • last yeargolang的GMP调度浅析GMP数据结构 G: 表示goroutine,包含了协程的状态,栈,上下文等信息。(基础大小2kb,可理解为打包代码段) M: 表示machine, 也就是工作线程,就是真正用来执行代码的线程。 包含线程的状态,寄存器,信号数据等,由go routime管理生命周期。(2个特殊的M,一个是主线程M,专门用来处理主线流程;另外一个是监控线程M,无需P可执行。…cccoinx (29)in cn • last yeargolang内存管理初探内存的理解 可以把内存看成一个数组,内存地址可以看成是数组的下标。 CPU执行指令时,通过内存地址(虚拟内存)将物理内存上的数据载入到寄存器执行机器指令。 对于频繁访问的指令会缓存到CPU的多级缓存中。(CPU常规有一级缓存(几十KB),二级缓存,三级缓存等) 寄存器 是一种硬件设备。在计算机中用来存储数据。(可以是指令数据,控制数据,操作数据等等)…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 the right programming language and framework for your project can be a critical…cccoinx (29)in cn • last yeargo的GC理解GC实现方式有哪些 GC (Garbage Collection)泛指垃圾回收机制,在高级编程语言中,实现自动化的内存管理(内存分配与回收)。 自动GC 可以使得开发者更关注业务代码,无需管理程序内存分配与回收,有效的提高开发效率。 手动GC 手动GC可以更精确的通过API管理内存,可以极致利用资源。 GC实现方式 主要有两类,包括…