<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>LT Monster</title><description>用于沉淀 C#、PostgreSQL、ASP.NET Core 与前端实践的个人只读知识库。</description><link>https://ltmonster.space/</link><language>zh-CN</language><item><title>算法专题：数组与哈希</title><link>https://ltmonster.space/algorithm-arrays-hashing-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-arrays-hashing-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握数组与哈希的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：二分查找</title><link>https://ltmonster.space/algorithm-binary-search-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-binary-search-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握二分查找的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：复杂度、排序与解题方法</title><link>https://ltmonster.space/algorithm-foundations-sorting-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-foundations-sorting-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握复杂度、排序与解题方法的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：图遍历与搜索</title><link>https://ltmonster.space/algorithm-graphs-search-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-graphs-search-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握图遍历与搜索的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：堆、优先队列与 Top K</title><link>https://ltmonster.space/algorithm-heaps-top-k-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-heaps-top-k-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握堆、优先队列与 Top K的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：链表</title><link>https://ltmonster.space/algorithm-linked-lists-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-linked-lists-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握链表的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：栈、队列与单调结构</title><link>https://ltmonster.space/algorithm-stacks-queues-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-stacks-queues-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握栈、队列与单调结构的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：字符串</title><link>https://ltmonster.space/algorithm-strings-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-strings-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握字符串的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：树与二叉搜索树</title><link>https://ltmonster.space/algorithm-trees-bst-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-trees-bst-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握树与二叉搜索树的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>算法专题：双指针与滑动窗口</title><link>https://ltmonster.space/algorithm-two-pointers-window-guide/</link><guid isPermaLink="true">https://ltmonster.space/algorithm-two-pointers-window-guide/</guid><description>从识别信号、不变量、复杂度和 C# 实现掌握双指针与滑动窗口的后端面试解法。</description><pubDate>Fri, 24 Jul 2026 00:00:00 GMT</pubDate></item><item><title>面试常见算法：识别思路、复杂度与 C# 模板</title><link>https://ltmonster.space/interview-common-algorithms-csharp/</link><guid isPermaLink="true">https://ltmonster.space/interview-common-algorithms-csharp/</guid><description>按哈希、双指针、滑动窗口、二分查找、图遍历、回溯、贪心和动态规划等解题模式，整理面试识别信号、复杂度与可复用的 C# 模板。</description><pubDate>Wed, 22 Jul 2026 00:00:00 GMT</pubDate></item><item><title>深入理解 C# 集合：接口、实现与选型</title><link>https://ltmonster.space/csharp-collections-deep-dive/</link><guid isPermaLink="true">https://ltmonster.space/csharp-collections-deep-dive/</guid><description>从接口层级、底层数据结构、复杂度和并发语义理解 .NET 集合，并根据实际访问模式选择合适实现。</description><pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate></item><item><title>从编译器状态机到 Runtime Async：.NET 11 前后的异步差异</title><link>https://ltmonster.space/dotnet-11-runtime-async/</link><guid isPermaLink="true">https://ltmonster.space/dotnet-11-runtime-async/</guid><description>对比 .NET 11 之前的编译器异步状态机与 .NET 11 Runtime Async V2，说明实现方式、调用栈、性能、启用配置和当前限制。</description><pubDate>Mon, 20 Jul 2026 00:00:00 GMT</pubDate></item><item><title>PostgreSQL 18 性能优化实战：从慢查询诊断到表结构、索引与物化视图</title><link>https://ltmonster.space/postgresql-18-performance-optimization/</link><guid isPermaLink="true">https://ltmonster.space/postgresql-18-performance-optimization/</guid><description>通过订单系统案例掌握 PostgreSQL 18 的慢查询诊断、表结构与索引设计、SQL 优化、物化视图、分区和 MVCC 维护方法。</description><pubDate>Mon, 20 Jul 2026 00:00:00 GMT</pubDate></item><item><title>分布式锁：从互斥、租约到 Fencing Token</title><link>https://ltmonster.space/distributed-locks/</link><guid isPermaLink="true">https://ltmonster.space/distributed-locks/</guid><description>由浅入深理解分布式锁的互斥、租约、续期、脑裂与 Fencing Token，并比较数据库、Redis、ZooKeeper 和 etcd 的适用边界。</description><pubDate>Sat, 18 Jul 2026 04:00:00 GMT</pubDate></item><item><title>C# 高性能写法（四）：集合</title><link>https://ltmonster.space/csharp-high-performance-collections/</link><guid isPermaLink="true">https://ltmonster.space/csharp-high-performance-collections/</guid><description>整理 C# 集合在容量、查找、排序、只读数据、缓冲区复用和并发场景中的性能写法与适用边界。</description><pubDate>Sat, 18 Jul 2026 00:00:00 GMT</pubDate></item><item><title>C# 高性能写法（三）：LINQ</title><link>https://ltmonster.space/csharp-high-performance-linq/</link><guid isPermaLink="true">https://ltmonster.space/csharp-high-performance-linq/</guid><description>整理 C# LINQ 在延迟执行、重复枚举、中间集合、查找、排序和闭包等场景中的性能写法与适用边界。</description><pubDate>Sat, 18 Jul 2026 00:00:00 GMT</pubDate></item><item><title>C# 高性能写法（五）：正则表达式</title><link>https://ltmonster.space/csharp-high-performance-regex/</link><guid isPermaLink="true">https://ltmonster.space/csharp-high-performance-regex/</guid><description>整理 C# 正则表达式在源生成、实例复用、回溯控制、超时、Span 匹配和捕获分配等场景中的性能写法与安全边界。</description><pubDate>Sat, 18 Jul 2026 00:00:00 GMT</pubDate></item><item><title>C# 高性能写法（二）：String</title><link>https://ltmonster.space/csharp-high-performance-string/</link><guid isPermaLink="true">https://ltmonster.space/csharp-high-performance-string/</guid><description>系统整理 C# 字符串在构造、比较、查找、解析、正则和 UTF-8 场景中的性能写法与适用边界。</description><pubDate>Fri, 17 Jul 2026 00:00:00 GMT</pubDate></item><item><title>C# Span&lt;T&gt;：从切片到内存安全的高性能编程</title><link>https://ltmonster.space/csharp-span-from-basics-to-internals/</link><guid isPermaLink="true">https://ltmonster.space/csharp-span-from-basics-to-internals/</guid><description>从数组和字符串切片出发，逐步理解 Span&lt;T&gt;、ReadOnlySpan&lt;T&gt;、stackalloc、ref struct 生命周期及高性能 API 设计。</description><pubDate>Fri, 17 Jul 2026 00:00:00 GMT</pubDate></item><item><title>在浏览器输入 HTTPS URL 后：从本地检查到响应首字节</title><link>https://ltmonster.space/https-url-to-first-byte/</link><guid isPermaLink="true">https://ltmonster.space/https-url-to-first-byte/</guid><description>沿真实访问顺序理解浏览器从 URL 解析、缓存、DNS、TCP/QUIC、TLS 和 HTTP，到 CDN、源站处理与响应首字节之间经历的网络过程。</description><pubDate>Thu, 16 Jul 2026 00:00:00 GMT</pubDate></item><item><title>OSI 七层模型详解：典型协议、数据封装与故障定位</title><link>https://ltmonster.space/osi-seven-layer-model/</link><guid isPermaLink="true">https://ltmonster.space/osi-seven-layer-model/</guid><description>系统理解 OSI 七层模型的职责、数据单元和典型协议，并通过 HTTPS、HTTP/3 与实际排障场景建立跨层网络心智模型。</description><pubDate>Thu, 16 Jul 2026 00:00:00 GMT</pubDate></item><item><title>RabbitMQ 生产实践：可靠性、幂等、重试与高可用</title><link>https://ltmonster.space/rabbitmq-production-reliability/</link><guid isPermaLink="true">https://ltmonster.space/rabbitmq-production-reliability/</guid><description>从端到端交付语义出发，设计 Outbox、消费者幂等、有限重试、死信处理、Quorum Queue、集群监控和故障演练。</description><pubDate>Wed, 15 Jul 2026 03:00:00 GMT</pubDate></item><item><title>RabbitMQ + .NET 10 实战：可靠地发布与消费消息</title><link>https://ltmonster.space/rabbitmq-dotnet-practical-guide/</link><guid isPermaLink="true">https://ltmonster.space/rabbitmq-dotnet-practical-guide/</guid><description>使用 RabbitMQ.Client 7.x 的异步 API，完成拓扑声明、消息发布、发布者确认、手动消费确认、QoS 和优雅关闭。</description><pubDate>Wed, 15 Jul 2026 02:00:00 GMT</pubDate></item><item><title>RabbitMQ 核心原理：一条消息如何完成路由与消费</title><link>https://ltmonster.space/rabbitmq-core-concepts/</link><guid isPermaLink="true">https://ltmonster.space/rabbitmq-core-concepts/</guid><description>从一次订单事件发布出发，讲清 Producer、Connection、Channel、Exchange、Binding、Routing Key、Queue、Consumer 和消费确认之间的关系。</description><pubDate>Wed, 15 Jul 2026 01:00:00 GMT</pubDate></item><item><title>设计模式系统复习：23 种 GoF 模式与情景示例</title><link>https://ltmonster.space/gof-design-patterns-review/</link><guid isPermaLink="true">https://ltmonster.space/gof-design-patterns-review/</guid><description>按创建型、结构型和行为型系统复习 23 种 GoF 设计模式，通过简单情景理解每种模式的意图、适用场景与使用边界。</description><pubDate>Wed, 15 Jul 2026 00:00:00 GMT</pubDate></item><item><title>Keepalived 原理详解：从 VRRP 选主到 VIP 故障切换</title><link>https://ltmonster.space/keepalived-high-availability/</link><guid isPermaLink="true">https://ltmonster.space/keepalived-high-availability/</guid><description>从高可用入口问题出发，理解 Keepalived、VRRP、VIP、有效优先级、健康检查、故障切换、抢占策略与脑裂，不展开具体部署步骤。</description><pubDate>Wed, 15 Jul 2026 00:00:00 GMT</pubDate></item><item><title>Redis 主从复制：从全量同步到人工故障切换</title><link>https://ltmonster.space/redis-replication/</link><guid isPermaLink="true">https://ltmonster.space/redis-replication/</guid><description>理解 Redis 主从复制的全量同步、部分重同步、复制偏移量和异步一致性，并用双服务器 Docker Compose 完成最小验证。</description><pubDate>Tue, 14 Jul 2026 04:00:00 GMT</pubDate></item><item><title>Redis Sentinel：主库故障后如何完成自动选主</title><link>https://ltmonster.space/redis-sentinel/</link><guid isPermaLink="true">https://ltmonster.space/redis-sentinel/</guid><description>理解 Redis Sentinel 的主观下线、客观下线、quorum、领导者选举和故障转移流程，并完成三服务器最小部署。</description><pubDate>Tue, 14 Jul 2026 03:00:00 GMT</pubDate></item><item><title>Redis Cluster：哈希槽、客户端路由与故障转移</title><link>https://ltmonster.space/redis-cluster/</link><guid isPermaLink="true">https://ltmonster.space/redis-cluster/</guid><description>理解 Redis Cluster 的 16384 个哈希槽、MOVED 与 ASK 重定向、Gossip 故障探测和主从切换，并完成三服务器 3 主 3 从部署。</description><pubDate>Tue, 14 Jul 2026 02:00:00 GMT</pubDate></item><item><title>C# 高性能写法（一）：通用优化</title><link>https://ltmonster.space/csharp-high-performance/</link><guid isPermaLink="true">https://ltmonster.space/csharp-high-performance/</guid><description>整理 Stopwatch、stackalloc、static Lambda 和 PeriodicTimer 等适合直接使用的 C# 性能写法。</description><pubDate>Tue, 14 Jul 2026 00:00:00 GMT</pubDate></item><item><title>.NET 10 线程池：从运行原理到饥饿诊断与调优</title><link>https://ltmonster.space/dotnet-10-thread-pool/</link><guid isPermaLink="true">https://ltmonster.space/dotnet-10-thread-pool/</guid><description>以 .NET 10 为运行环境，理解线程池、Task 与 async/await 的关系，并掌握线程池饥饿的识别、诊断和调优边界。</description><pubDate>Tue, 14 Jul 2026 00:00:00 GMT</pubDate></item><item><title>ASP.NET Core 用户认证授权设计：功能权限与数据权限</title><link>https://ltmonster.space/aspnetcore-rbac-implementation/</link><guid isPermaLink="true">https://ltmonster.space/aspnetcore-rbac-implementation/</guid><description>介绍 IAM 平台中用户认证、功能权限和数据权限的整体设计，以及 JWT、Redis 和 RBAC 在请求链路中的职责。</description><pubDate>Mon, 13 Jul 2026 00:00:00 GMT</pubDate></item><item><title>ASP.NET Core Web API 架构模式：从三层、REPR 到 DDD</title><link>https://ltmonster.space/aspnetcore-web-api-architecture-patterns/</link><guid isPermaLink="true">https://ltmonster.space/aspnetcore-web-api-architecture-patterns/</guid><description>比较传统三层、Clean Architecture、REPR、垂直切片、CQRS、DDD 与模块化单体，理解它们解决的问题、组合方式和选型边界。</description><pubDate>Mon, 13 Jul 2026 00:00:00 GMT</pubDate></item><item><title>C# 动态对象</title><link>https://ltmonster.space/csharp-dynamic-object/</link><guid isPermaLink="true">https://ltmonster.space/csharp-dynamic-object/</guid><description>理解 dynamic 的运行时绑定、ExpandoObject 的常见操作，以及动态数据进入强类型业务模型的边界。</description><pubDate>Mon, 13 Jul 2026 00:00:00 GMT</pubDate></item><item><title>CSharp之动态对象</title><link>https://ltmonster.space/csharp-dynamic-type/</link><guid isPermaLink="true">https://ltmonster.space/csharp-dynamic-type/</guid><description>动态对象在运行时而不是在编译时公开属性和方法等成员，使您能够创建对象来处理与静态类型或格式不匹配的结构。</description><pubDate>Tue, 23 Apr 2024 00:00:00 GMT</pubDate></item><item><title>ASP.NET Core 中间件</title><link>https://ltmonster.space/aspnetcore-middleware/</link><guid isPermaLink="true">https://ltmonster.space/aspnetcore-middleware/</guid><description>介绍 ASP.NET Core 10 中间件的执行顺序、定义与激活方式、管道分支、依赖注入和版本行为变化。</description><pubDate>Wed, 01 Mar 2023 00:00:00 GMT</pubDate></item><item><title>PostgreSQL小技巧</title><link>https://ltmonster.space/postgresql-skill/</link><guid isPermaLink="true">https://ltmonster.space/postgresql-skill/</guid><description>PostgreSQL一些实用小技巧</description><pubDate>Mon, 24 Oct 2022 00:00:00 GMT</pubDate></item><item><title>PostgreSQL扩展之Postgis</title><link>https://ltmonster.space/postgis/</link><guid isPermaLink="true">https://ltmonster.space/postgis/</guid><description>流行的PostgreSQL对象关系数据库的空间数据库扩展。</description><pubDate>Wed, 07 Jul 2021 00:00:00 GMT</pubDate></item><item><title>PostgreSQL扩展之postgres_fdw</title><link>https://ltmonster.space/postgresql-extension-fwd/</link><guid isPermaLink="true">https://ltmonster.space/postgresql-extension-fwd/</guid><description>postgres_fdw实现的是各个PostgreSQL数据库及远程数据库之间的跨库操作。</description><pubDate>Tue, 13 Apr 2021 00:00:00 GMT</pubDate></item><item><title>PostgreSQL扩展</title><link>https://ltmonster.space/postgresql-extension/</link><guid isPermaLink="true">https://ltmonster.space/postgresql-extension/</guid><description>PostgreSQL扩展的安装、卸载。</description><pubDate>Tue, 06 Apr 2021 00:00:00 GMT</pubDate></item><item><title>Windows下PostgreSQL主从热备</title><link>https://ltmonster.space/postgresql-hotbackup/</link><guid isPermaLink="true">https://ltmonster.space/postgresql-hotbackup/</guid><description>PostgreSQL主从热备操作流程。</description><pubDate>Mon, 22 Mar 2021 00:00:00 GMT</pubDate></item></channel></rss>