AI Agent Memory, Redis Benchmarks, NuGet Security
Coverage spans MCP memory and gateways, Worker Service and Redis performance tests, PostgreSQL JSONB, .NET 11 Preview 7, and NuGet source mapping.
Jasen's top three picks
- 1 Memory-MCP: A shared memory layer for AI Agents that work as a team
blog.devgenius.io
Shared memory for multi-agent systems is still early territory, but this is a concrete implementation idea rather than hand-wavy agent talk.
- 2 Benchmarking .NET Worker Services Under CPU and Memory Pressure
c-sharpcorner.com
Useful benchmark framing here: throughput alone is not enough when worker services start contending for CPU, memory, and GC time.
- 3 How to Create a Custom Date Picker Control in Windows Forms
c-sharpcorner.com
Old-school desktop UI work still matters, and custom controls remain a good way to understand WinForms internals.
Editor's note
I kept this one deliberately mixed, which is how I like these issues. The Redis benchmarking pieces are practical if you’re tuning API throughput, and the NuGet package source mapping article is a useful reminder that supply chain security belongs in everyday .NET work. I also thought the MCP articles were worth including because they’re trying to bridge existing ASP.NET Core apps into agent-style workflows without a rewrite.
Today's articles
Memory-MCP: A shared memory layer for AI Agents that work as a team
blog.devgenius.io
Why I built a remote MCP server that lets multiple agents — and the people working alongside them — read from and write to the same memory… Continue reading on Dev Genius »
Topics: ASP.NET Core OpenAI
Read articleBenchmarking .NET Worker Services Under CPU and Memory Pressure
c-sharpcorner.com
Benchmark .NET Worker Services under CPU and memory pressure by measuring throughput, queue backlogs, garbage collection, latency, resource usage, and application stability.
Topics: Benchmarking .NET Core Performance
Read articleHow to Create a Custom Date Picker Control in Windows Forms
c-sharpcorner.com
In this article, learn how to build a custom, lightweight date picker control for Windows Forms applications using C#. Discover how to design custom UI layouts, manage date selection logic, and extend...
Topics: C# .NET Framework
Read articleBenchmarking Redis Serialization Formats for High-Throughput .NET APIs
c-sharpcorner.com
Benchmark Redis serialization formats for high-throughput .NET APIs by comparing JSON, MessagePack, payload size, latency, memory allocations, throughput, and performance.
Topics: Benchmarking Performance Redis
Read articlePostgreSQL 19 Beta: Benchmarking JSONB Workloads from .NET APIs
c-sharpcorner.com
Benchmark PostgreSQL 19 Beta JSONB workloads from .NET APIs and evaluate query performance, indexing strategies, EF Core behavior, and database scalability.
Topics: Benchmarking EF Core PostgreSQL
Read articleBuilding a Distributed Task Queue from Scratch in C#
medium.com
I started this project with a simple question:
Topics: C# Design Patterns
Read articleMemory in AI Agents: How Do AI Systems Remember?
medium.com
Have you ever wondered why an LLM can have a conversation with you for several messages, but if you start a completely new conversation…
Topics: OpenAI
Read article.NET 11 Preview 7: What’s New and Why Developers Should Explore It
c-sharpcorner.com
A simple and practical look at .NET 11 Preview 7, covering the latest features, performance improvements, ASP.NET Core updates, C# development, EF Core, cloud tools, and what developers should know be...
Topics: ASP.NET Core C# EF Core
Read articleGraceful Degradation: Architecting Resilient Enterprise Applications in C#
c-sharpcorner.com
Graceful degradation is an architectural pattern that detects component failures and falls back to reduced functionality—ensuring core operations remain available and business continuity is preserved.
Topics: C# Design Patterns
Read articleBenchmarking Redis Connection Multiplexing for High-Throughput .NET APIs
c-sharpcorner.com
Benchmark Redis connection multiplexing in high-throughput .NET APIs by measuring throughput, latency, connection usage, CPU consumption, and scalability under load.
Topics: Benchmarking Performance Redis
Read articleRubbish Code, Clean Memory: Understanding the .NET Garbage Collector
truestorydavestorey.medium.com
Automatic memory management is a cornerstone of what makes many modern programming languages and runtimes so appealing to many engineers…
Topics: C# .NET Core Performance
Read articleSQL and AI for Developers in Action
youtube.com
Come see the Microsoft team show you the latest innovations for SQL, ground to cloud to fabric, to help you build AI applications securely with your data. This will be a heavy demo-oriented session so...
Topics: OpenAI SQL Server
Read articleEvery Agent Platform Needs a Front Door: A Production YARP Gateway with Runtime Config
topuzas.medium.com
Three weeks after our verification layer finally stopped paging me at night, sales closed a customer whose contract had one non-negotiable…
Topics: ASP.NET Core Minimal APIs SignalR
Read articleDesigning Controlled Concurrency in .NET with SemaphoreSlim
c-sharpcorner.com
Learn how to use SemaphoreSlim to control asynchronous concurrency in .NET, limit concurrent order-processing operations, avoid resource pressure, and improve throughput compared with fixed-size batch...
Topics: C# Performance
Read articleFixing .NET SslException on Linux Container
blog.dotnetframework.org
.NET 8 / C# LINUX / OPENSSL GOOGLE CLOUD RUNFixing .NET SslException on Linux ContainerDeployments: The ‘RequireEncryption’ Policy PitfallAuthor: DevOps & Software Architecture Engineering Category: T...
Topics: Docker .NET 8 Security
Read articleI Didn’t Want to Rewrite My ASP.NET Core API for MCP — So I Built Nabu.NET
medium.com
Turn existing ASP.NET Core controllers, Minimal APIs, and even SignalR hubs into MCP tools with a single attribute — while keeping your…
Topics: ASP.NET Core Minimal APIs SignalR
Read articleMy benchmark said my library was 2x faster. It was not.
baryodev.medium.com
Mapsicle 1.3.0 is on NuGet. It fixes seven defects, two of which corrupted data silently. But the change I want to write about is the one…
Topics: Benchmarking Performance
Read articleNuGet Package Source Mapping: Preventing Dependency Confusion in .NET
c-sharpcorner.com
Learn how NuGet Package Source Mapping prevents dependency confusion attacks in .NET applications by controlling package sources and securing software supply chains.
Topics: Security
Read article