Tag

Memcached

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Apr 29, 2025 · Backend Development

Overview of PHP Caching Mechanisms

This article explains the various PHP caching layers—including OPcode, data, page, and HTTP caching—provides configuration examples, code snippets for file, Memcached, and Redis caches, and outlines best practices and invalidation strategies to improve web application performance.

MemcachedOpCachePHP
0 likes · 7 min read
Overview of PHP Caching Mechanisms
Laravel Tech Community
Laravel Tech Community
May 16, 2024 · Backend Development

Comprehensive Guide to Full-Page, Partial, and Memory Caching Techniques for PHP Applications

This article explains various server‑side caching strategies—including full‑page static caching, fragment caching, data and query caching, time‑based and content‑change invalidation, as well as memory caches like Memcached and Redis, Apache modules, APC, and opcode caches—providing PHP code examples for each method.

MemcachedOpcode CachePHP
0 likes · 7 min read
Comprehensive Guide to Full-Page, Partial, and Memory Caching Techniques for PHP Applications
php中文网 Courses
php中文网 Courses
Jan 24, 2024 · Backend Development

PHP Caching Techniques: Page Cache, Data Cache, and File Cache

This article explains why PHP caching is essential for web performance and details three main techniques—page caching with output buffering, data caching using extensions like Memcached or APCu, and file caching with file I/O functions—plus best practices for updates, expiration, and avoiding cache penetration.

APCuMemcachedPHP
0 likes · 6 min read
PHP Caching Techniques: Page Cache, Data Cache, and File Cache
IT Architects Alliance
IT Architects Alliance
Jan 9, 2024 · Backend Development

Design Principles and Best Practices for Distributed Cache Architecture

This article explains the core design goals, sharding strategies, replication models, communication protocols, cache selection, and monitoring techniques needed to build high‑performance, highly available, and scalable distributed cache systems for large‑scale internet applications.

MemcachedRedisbackend architecture
0 likes · 5 min read
Design Principles and Best Practices for Distributed Cache Architecture
Deepin Linux
Deepin Linux
Oct 16, 2023 · Databases

Understanding Redis: Use Cases, Data Types, and Comparison with Memcached

This article provides a comprehensive overview of Redis, covering its common application scenarios, detailed comparisons with Memcached, internal data structures, implementation details, and practical usage patterns such as caching, leaderboards, counters, and real‑time analytics for modern backend systems.

Data StructuresDatabaseMemcached
0 likes · 25 min read
Understanding Redis: Use Cases, Data Types, and Comparison with Memcached
Architect's Guide
Architect's Guide
May 17, 2023 · Backend Development

Resolving HTTPS Redirect and Session Consistency Issues with Nginx, Tomcat, and Memcached

This guide explains why Nginx proxying to an HTTP backend causes the browser URL to change, how to fix the redirect by using HTTPS, and how to achieve session consistency across multiple Tomcat instances by integrating Memcached for shared session storage.

DockerLoad BalancingMemcached
0 likes · 7 min read
Resolving HTTPS Redirect and Session Consistency Issues with Nginx, Tomcat, and Memcached
Laravel Tech Community
Laravel Tech Community
May 14, 2023 · Backend Development

Memcached 1.6.18 Release: Fixes and Updates to Proxy Mode, Extstore, and Meta Protocol

Memcached 1.6.18 has been released, bringing extensive fixes and enhancements to the proxy mode, extstore disk flushing, meta‑protocol changes, and numerous core and backend improvements, including signal handling, thread naming, Lua debugging, and clang‑15 build compatibility.

BugFixesCacheMemcached
0 likes · 3 min read
Memcached 1.6.18 Release: Fixes and Updates to Proxy Mode, Extstore, and Meta Protocol
Top Architect
Top Architect
Feb 22, 2023 · Backend Development

Resolving HTTPS Redirect and Session Consistency Issues with Nginx, Docker, and Memcached

This article explains why an Nginx reverse‑proxy configuration that proxies HTTPS requests to a backend server causes the browser URL to change, how to fix the redirect by using HTTPS in the proxy, and how to achieve session consistency across multiple Tomcat instances by deploying Memcached with Docker and adjusting Tomcat’s session manager.

DockerHTTPSLoad Balancing
0 likes · 8 min read
Resolving HTTPS Redirect and Session Consistency Issues with Nginx, Docker, and Memcached
Selected Java Interview Questions
Selected Java Interview Questions
Sep 25, 2022 · Backend Development

Understanding Component Implementation Principles for Technical Interviews

The article explains why interviewers probe the implementation details of backend components such as Redis, HashMap, and Memcached, illustrates common interview questions, and shows how mastering the underlying data structures, algorithms, and memory‑allocation mechanisms can improve both interview performance and real‑world problem solving.

AlgorithmsData StructuresHashMap
0 likes · 8 min read
Understanding Component Implementation Principles for Technical Interviews
vivo Internet Technology
vivo Internet Technology
Apr 6, 2022 · Backend Development

Comprehensive Guide to Caching: Concepts, Types, Strategies, and Best Practices

This guide explains caching fundamentals, purposes, and optimal use cases, details hit rates and eviction policies such as FIFO, LRU, LFU, TTL/TTI, compares client‑side (HTTP, browser) and server‑side caches (CDN, Redis, Memcached), explores multi‑level architectures, common pitfalls like avalanche, penetration and breakdown, and best‑practice strategies including pre‑warming, update patterns, and consistency management.

Cache AvalancheCache EvictionMemcached
0 likes · 28 min read
Comprehensive Guide to Caching: Concepts, Types, Strategies, and Best Practices
Code Ape Tech Column
Code Ape Tech Column
Mar 22, 2022 · Backend Development

Common Pitfalls and Solutions for Distributed Caching with Redis and Memcached

This article examines the characteristics of Redis and Memcached, identifies typical design mistakes such as consistency, cache avalanche, hot‑key, penetration and breakdown issues, and presents practical mitigation strategies—including consistent hashing, binlog‑driven cache invalidation, distributed locking, and multi‑node replication—to help backend engineers build reliable high‑concurrency cache layers.

Cache ConsistencyMemcachedRedis
0 likes · 20 min read
Common Pitfalls and Solutions for Distributed Caching with Redis and Memcached
Laravel Tech Community
Laravel Tech Community
Feb 27, 2022 · Databases

Comparison of Redis, Memcached, and MongoDB: Advantages, Disadvantages, and Use Cases

This article compares Redis, Memcached, and MongoDB, outlining each system's strengths and weaknesses, performance characteristics, storage capabilities, availability, reliability, consistency, data analysis features, and typical application scenarios to help developers choose the appropriate NoSQL solution.

Database ComparisonMemcachedMongoDB
0 likes · 8 min read
Comparison of Redis, Memcached, and MongoDB: Advantages, Disadvantages, and Use Cases
Code Ape Tech Column
Code Ape Tech Column
Aug 25, 2021 · Backend Development

Common Pitfalls and Best Practices of Distributed Caching with Redis and Memcached

This article examines the characteristics of Redis and Memcached as distributed cache solutions, outlines common design pitfalls such as consistency, cache penetration, breakdown, avalanche, and hot‑key issues, and provides practical strategies—including consistent hashing, binlog‑driven invalidation, message‑queue indexing, and lock mechanisms—to build reliable and high‑performance caching layers in backend systems.

Cache ConsistencyCache InvalidationMemcached
0 likes · 18 min read
Common Pitfalls and Best Practices of Distributed Caching with Redis and Memcached
Top Architect
Top Architect
Mar 20, 2021 · Backend Development

Scaling Cache Infrastructure at Pinterest

This article provides an in‑depth technical overview of how Pinterest scales its distributed cache layer using Memcached and Mcrouter on AWS, covering architecture, performance, high availability, load balancing, trade‑offs, and future directions.

AWSMemcachedbackend
0 likes · 16 min read
Scaling Cache Infrastructure at Pinterest
Top Architect
Top Architect
Oct 7, 2020 · Databases

Redis vs Memcached: A Comprehensive Technical Comparison

This article systematically compares Redis and Memcached across thread models, supported data structures, eviction strategies, pipelining, transactions, persistence, high‑availability mechanisms, and clustering, helping developers choose the most suitable in‑memory database for their specific workload requirements.

High AvailabilityIn-Memory DatabaseMemcached
0 likes · 9 min read
Redis vs Memcached: A Comprehensive Technical Comparison
Architecture Digest
Architecture Digest
Oct 3, 2020 · Databases

Redis vs Memcached: A Comprehensive Comparison

This article systematically compares Redis and Memcached across thread models, data structures, eviction policies, pipelining and transactions, persistence, high availability, and clustering, helping developers choose the most suitable in‑memory database for their specific business requirements.

Data StructuresIn-Memory DatabaseMemcached
0 likes · 11 min read
Redis vs Memcached: A Comprehensive Comparison
Aikesheng Open Source Community
Aikesheng Open Source Community
Jul 6, 2020 · Databases

Using MySQL Memcached API: Installation, New Features, and Practical Examples

This article explains the MySQL Memcached API, its evolution from MySQL 5.6 to 8.0, demonstrates how to install the plugin, configure tables, and perform batch and range key retrievals with code examples, highlighting suitable use cases and performance benefits.

APIDatabaseMemcached
0 likes · 9 min read
Using MySQL Memcached API: Installation, New Features, and Practical Examples
System Architect Go
System Architect Go
Dec 9, 2019 · Backend Development

Building a Simple Memcached Client with Consistent Hashing, TCP, and Connection Pool in Node.js

This tutorial walks through creating a lightweight Memcached client in Node.js, covering cluster routing with consistent hashing, low‑level TCP communication, a reusable connection‑pool implementation, and a custom protocol for get operations, complete with practical code examples.

Connection PoolMemcachedNode.js
0 likes · 8 min read
Building a Simple Memcached Client with Consistent Hashing, TCP, and Connection Pool in Node.js
Python Programming Learning Circle
Python Programming Learning Circle
Oct 27, 2018 · Backend Development

Mastering PHP Page Caching: From Full Static Pages to Opcode and Memcached

This article explains various PHP caching techniques—including full‑page static generation, partial page fragments, data and query caching, time‑based and content‑change strategies, as well as memory caches like Memcached, Apache cache settings, APC extension, and opcode caching—providing code examples and practical guidance to improve web performance.

ApacheMemcachedPHP
0 likes · 7 min read
Mastering PHP Page Caching: From Full Static Pages to Opcode and Memcached