Redis Cache Technology: Installation, Configuration, and Advanced Usage
Redis Installation and Setup
Redis 5.0+ requires GCC 9.0 or higher for compilation.
# Download and extract
wget http://download.redis.io/releases/redis-3.2.12.tar.gz
tar xzf redis-3.2.12.tar.gz
mv redis-3.2.12 /data/redis
# Build from source
cd /data/redis
make
# Configure environment
vim /etc/profile
export PATH=/data/redis/src:$PATH
source ...
Posted on Wed, 17 Jun 2026 18:02:12 +0000 by blackwinged
Deep Dive into Redis Persistence Mechanisms: RDB and AOF
Redis operates as an in-memory data store, leveraging RAM to achieve high-speed data access. While the primary design goal is performance, relying solely on memory introduces a risk of data loss during power outages or process failures. To mitigate this, Redis provides robust persistence mechanisms to save the in-memory state to disk, allowing ...
Posted on Tue, 16 Jun 2026 16:21:29 +0000 by TheSeeker
Effortless Local Setup: Managing INFINI Console and Easysearch with the start-local Script
Previous Overview and Introduction
In our series on setting up the INFINI local environment:
The first article, "Setting Up a Persistent INFINI Console and Easysearch Container Environment," explored how to use basic docker run commands to build the Console and Easysearch services step by step, with a focus on solving data persistenc ...
Posted on Tue, 09 Jun 2026 17:41:10 +0000 by Innovative_Andy
Implementing Persistence with MyBatis and MyBatis-Plus: A Technical Overview
Understanding MyBatis Core Concepts
MyBatis operates as a first-class persistence framework that simplifies database interaction by coupling SQL statements with Java objects. It abstracts the complexities of manual JDBC coding, including resource management and result set extraction. By utilizing XML descriptors or annotations, developers map p ...
Posted on Sat, 16 May 2026 12:39:47 +0000 by o3d
Linux System Persistence Techniques and Implementation Methods
File Concealment Strategies
During security assessments, defensive teams typically scan for newly created or modified files and examine sensitive directories for unauthorized uploads. To counter these detection methods, two primary approaches are employed: timestamp manipulation and file attribute locking.
Timestamp manipulation involves alteri ...
Posted on Sun, 10 May 2026 04:18:53 +0000 by andrei.mita
Redis Essentials: Installation, Persistence, and High Availability
Redis stands as an open-source, high-performance in-memory data store. Often referred to as a data structure server, it supports various data types including strings, hashes, lists, sets, and sorted sets. These data types allow for atomic operations such as appending to strings, incrementing hash values, adding elements to lists, and performing ...
Posted on Fri, 08 May 2026 23:23:31 +0000 by john8675309