Tagged articles
7 articles
Page 1 of 1
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.

BackendFile CacheMemcached
0 likes · 6 min read
PHP Caching Techniques: Page Cache, Data Cache, and File Cache
php Courses
php Courses
Oct 9, 2023 · Backend Development

PHP Performance Optimization and Caching Techniques

This article explains key PHP performance optimization strategies—including database query tuning, efficient coding practices, and various caching methods such as Redis and file‑based page caching—providing concrete code examples to improve response time and system stability.

File CachePHPbackend-development
0 likes · 6 min read
PHP Performance Optimization and Caching Techniques
php Courses
php Courses
Aug 14, 2023 · Backend Development

PHP Data Caching: Structures, Index Design Principles, and Code Examples

This article explains PHP data caching techniques—including memory, file, and database caches—provides practical code samples, and outlines key index design principles such as uniqueness, expiration, hotspot optimization, efficient updates, and hierarchical caching to improve performance.

File Cachedatabase cacheindex design
0 likes · 5 min read
PHP Data Caching: Structures, Index Design Principles, and Code Examples
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Jun 11, 2021 · Fundamentals

Analysis of Linux mmap File Read Process and Page Fault Handling

The article walks through Linux’s mmap file‑read workflow—from the kernel entry point and VMA creation, through page‑fault handling that allocates pages and invokes synchronous or asynchronous readahead, to munmap’s unmapping steps and the deferred file‑cache reclamation mechanisms.

File CacheLinuxMemory Management
0 likes · 10 min read
Analysis of Linux mmap File Read Process and Page Fault Handling
Java High-Performance Architecture
Java High-Performance Architecture
May 22, 2021 · Backend Development

Boost Elasticsearch Query Speed: Simple Queries & OS Cache Tricks

This article explains how Elasticsearch processes queries across shards, identifies two key performance bottlenecks—query computation time and segment file I/O—and offers practical optimization strategies such as simplifying query logic, maximizing OS file cache usage, increasing memory, reducing stored data, and applying hot‑cold data separation.

ElasticsearchFile CacheI/O
0 likes · 7 min read
Boost Elasticsearch Query Speed: Simple Queries & OS Cache Tricks
21CTO
21CTO
Apr 30, 2016 · Information Security

How to Bypass PHP 7 OPcache File Restrictions with a Binary Webshell

This article explains the security flaws in PHP 7's OPcache engine, demonstrates a novel binary webshell attack that bypasses file‑write protections, and provides step‑by‑step exploitation techniques including file‑cache manipulation, memory‑cache bypass, and timestamp spoofing.

BypassFile CacheOPcache
0 likes · 11 min read
How to Bypass PHP 7 OPcache File Restrictions with a Binary Webshell
MaGe Linux Operations
MaGe Linux Operations
Oct 16, 2015 · Operations

Why Linux IO Is the Slowest Subsystem and How to Optimize It

This article explains why the Linux I/O subsystem is the slowest part of the system, describes page‑level disk access, major and minor page faults, the file buffer cache, page types, write‑back mechanisms, monitoring tools, and practical tips for reducing I/O latency.

File CacheI/OLinux
0 likes · 5 min read
Why Linux IO Is the Slowest Subsystem and How to Optimize It