Deploying a BI Application Stack with Docker Compose, Spring Boot, Redis, and RabbitMQ

Server PreparationAcquire a cloud server instance from a provider such as Tencent Cloud or AWS. Select a lightweight server configuration suitable for development or testing purposes. Install CentOS 7.6 or a similar Linux distribution as the operating system.Docker InstallationConfigure the package manager to use a mirror repository for faster ...

Posted on Thu, 07 May 2026 13:36:08 +0000 by Brandito520

Redis Core Concepts: Data Structures, Persistence, and Clustering Strategies

Data Types and Internal Encodings Redis distinguishes between external data types exposed to users and internal encoding mechanisms that optimize memory usage. Understanding these mappings helps in capacity planning and performance tuning. String Implementation Strings utilize Simple Dynamic Strings (SDS) rather than raw C strings. SDS maintain ...

Posted on Thu, 07 May 2026 11:58:00 +0000 by tylrwb