Tagged articles

go-redis

3 articles · Page 1 of 1
Golang Shines
Golang Shines
Feb 27, 2026 · Backend Development

Boost Go Backend Performance with Redis Pipeline: A Practical Guide

Redis Pipeline batches commands to reduce network round‑trip overhead, offering up to ~50× speedup for bulk writes, improved stability under high concurrency, and lower latency for critical services; the guide explains its mechanics, Go implementation with go‑redis/v9, performance benchmarks, suitable scenarios, and pitfalls to avoid.

backendgogo-redis
0 likes · 7 min read
Boost Go Backend Performance with Redis Pipeline: A Practical Guide
Code Wrench
Code Wrench
Sep 30, 2025 · Backend Development

Mastering Go-Redis: High‑Performance Caching, Locks, and Queues

This tutorial walks through why Redis is essential for Go services, how to choose and install the go‑redis client, and provides step‑by‑step code for connections, common commands, cache‑aside, distributed locks, leaderboards, and lightweight queues, followed by performance tuning and best‑practice recommendations.

Leaderboardcachingdistributed lock
0 likes · 8 min read
Mastering Go-Redis: High‑Performance Caching, Locks, and Queues
Go Programming World
Go Programming World
Jan 9, 2025 · Backend Development

Using tempredis to Launch Temporary Redis Instances for Go Testing

This article introduces the Go library tempredis, which can start and automatically clean up temporary Redis server instances for isolated testing, explains its main features, setup steps, API overview, and provides a complete example demonstrating how to integrate it with go-redis in a Go project.

go-redistempredistesting
0 likes · 9 min read
Using tempredis to Launch Temporary Redis Instances for Go Testing