Xuanwu Backend Tech Stack
Author

Xuanwu Backend Tech Stack

Primarily covers fundamental Java concepts, mainstream frameworks, deep dives into underlying principles, and JVM internals.

80
Articles
0
Likes
158
Views
0
Comments
Recent Articles

Latest from Xuanwu Backend Tech Stack

80 recent articles
Xuanwu Backend Tech Stack
Xuanwu Backend Tech Stack
Feb 21, 2025 · Databases

Why Redis’s In-Memory Architecture Beats Disk: Speed, Events, and Data Structures

Redis stores data directly in memory rather than on disk, leveraging microsecond‑level access, a single‑threaded Reactor event loop with I/O multiplexing, optimized data structures like strings, hashes, lists, sets, and a simple text protocol, all of which combine to deliver exceptionally high performance for high‑frequency read/write workloads.

Data StructuresEvent LoopIn-Memory Database
0 likes · 3 min read
Why Redis’s In-Memory Architecture Beats Disk: Speed, Events, and Data Structures
Xuanwu Backend Tech Stack
Xuanwu Backend Tech Stack
Feb 8, 2025 · Artificial Intelligence

How to Connect DeepSeek Models in VS Code Using Continue and SiliconFlow

This guide walks you through registering a SiliconFlow account, obtaining API keys, installing the Continue plugin for VS Code or JetBrains IDEs, configuring DeepSeek models (R1, V3, V2.5) in the plugin’s JSON settings, and testing the integration, with screenshots and full configuration code.

AI code assistantAPI integrationContinue plugin
0 likes · 8 min read
How to Connect DeepSeek Models in VS Code Using Continue and SiliconFlow
Xuanwu Backend Tech Stack
Xuanwu Backend Tech Stack
Feb 7, 2025 · Fundamentals

Mastering Java Class Loaders: Break and Follow the Parent Delegation Model

This article explains how to create custom Java class loaders by extending java.lang.ClassLoader, when to override findClass versus loadClass, demonstrates both adhering to and breaking the parent delegation model with complete code examples, and discusses common scenarios such as web servers, SPI, and hot deployment where the delegation mechanism is intentionally altered.

Custom Class LoaderJVMJava
0 likes · 11 min read
Mastering Java Class Loaders: Break and Follow the Parent Delegation Model