<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kauan Oliveira</title>
    <description>The latest articles on DEV Community by Kauan Oliveira (@kauan_dias_dcb9e0566058a5).</description>
    <link>https://dev.to/kauan_dias_dcb9e0566058a5</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3597799%2F5d99aa17-4d6c-452f-9e7c-2fe45ef8aded.jpg</url>
      <title>DEV Community: Kauan Oliveira</title>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kauan_dias_dcb9e0566058a5"/>
    <language>en</language>
    <item>
      <title>Agentic Workflow" the death of traditional Microservices Architecture?</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Wed, 29 Apr 2026 07:58:35 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/agentic-workflow-the-death-of-traditional-microservices-architecture-5epb</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/agentic-workflow-the-death-of-traditional-microservices-architecture-5epb</guid>
      <description>&lt;p&gt;Most of us spent our careers building deterministic pipelines: Request -&amp;gt; Auth -&amp;gt; Logic -&amp;gt; Database -&amp;gt; Response. However, with the rise of AI Agents that can "reason" and call tools (Function Calling), the way we structure our backends is changing. We are moving from rigid API flows to dynamic, agentic workflows where the LLM decides which microservice to hit next.&lt;/p&gt;

&lt;p&gt;The Architectural Shift:&lt;br&gt;
In my recent projects involving Ruby and Go, I’ve started thinking: instead of building an API for a frontend, should we be building APIs specifically for AI Agents? This means:&lt;/p&gt;

&lt;p&gt;Stricter OpenAPI specs: If the AI doesn't understand your schema, the system fails.&lt;/p&gt;

&lt;p&gt;Resilience is key: A Go-Gateway with aggressive rate-limiting is more important than ever when an AI agent can trigger 1,000 requests in a loop by mistake.&lt;/p&gt;

&lt;p&gt;State Management: How do we track state when the execution path is no longer hardcoded?&lt;/p&gt;

&lt;p&gt;The Question for the Community:&lt;br&gt;
Are you already designing "Agent-friendly" APIs?&lt;/p&gt;

&lt;p&gt;Does Clean Architecture (SOLID) help or hinder when the "client" of your code is an LLM instead of a human developer?&lt;/p&gt;

&lt;p&gt;How do you handle security when an AI has the autonomy to call multiple backend functions?&lt;/p&gt;

&lt;p&gt;I’m exploring these patterns in my latest GitHub modules—integrating resilient gateways with dynamic execution. Let's talk about the future of the backend!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>softwareengineering</category>
      <category>architecture</category>
      <category>backend</category>
    </item>
    <item>
      <title>AI-Driven Infrastructure: Are we ready for the shift from General Purpose to AI-Specific Hardware?</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Wed, 29 Apr 2026 07:55:43 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/ai-driven-infrastructure-are-we-ready-for-the-shift-from-general-purpose-to-ai-specific-hardware-2305</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/ai-driven-infrastructure-are-we-ready-for-the-shift-from-general-purpose-to-ai-specific-hardware-2305</guid>
      <description>&lt;p&gt;The buzz around LLMs is everywhere, but as systems engineers, we need to talk about the "elephant in the server room": the hardware bottleneck.&lt;/p&gt;

&lt;p&gt;For decades, we’ve optimized for general-purpose CPUs. But now, with the surge of AI, the architecture of our data centers is shifting towards GPUs, TPUs, and specialized NPU clusters. This isn't just a "hardware upgrade"; it’s a fundamental change in how we design software.&lt;/p&gt;

&lt;p&gt;The Engineering Challenges:&lt;br&gt;
Memory Wall: While AI models need massive bandwidth, our traditional memory architectures are struggling to keep up.&lt;/p&gt;

&lt;p&gt;Energy Density: We are moving from 10kW per rack to 50kW or even 100kW. How does this impact our choice of languages (like C++ or Rust) for the orchestration layer to minimize energy waste?&lt;/p&gt;

&lt;p&gt;Deterministic Latency: In systems like my telemetry engine, adding an AI inference step can destroy microsecond SLAs. How do we integrate "probabilistic" AI into "deterministic" systems?&lt;/p&gt;

&lt;p&gt;Let’s Discuss:&lt;br&gt;
Do you think software engineers should start learning about CUDA or Triton, or should we stay at the abstraction layer?&lt;/p&gt;

&lt;p&gt;How are you handling the latency added by AI inference in your backend pipelines?&lt;/p&gt;

&lt;p&gt;Is the future of "Cloud Native" actually "AI Native"?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cloud</category>
      <category>mojo</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>The Polyglot Architect: Choosing Between .NET 9, Go, and Rust for High-Throughput Systems</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Wed, 29 Apr 2026 07:54:11 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/the-polyglot-architect-choosing-between-net-9-go-and-rust-for-high-throughput-systems-271k</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/the-polyglot-architect-choosing-between-net-9-go-and-rust-for-high-throughput-systems-271k</guid>
      <description>&lt;p&gt;We often hear the advice: "Master one language." But in modern systems engineering, being stack-agnostic is becoming a superpower.&lt;/p&gt;

&lt;p&gt;I’ve spent the last few months building different modules for a telemetry and stream ecosystem, and the biggest lesson was realizing that the "best" language depends entirely on which part of the hardware you are trying to optimize.&lt;/p&gt;

&lt;p&gt;The Breakdown of my Ecosystem:&lt;br&gt;
Go (The Gateway): I used Go for the entry point. Why? Because Goroutines and the built-in race detector make it the perfect tool for resilient API Gateways with Circuit Breakers and Rate Limiting.&lt;/p&gt;

&lt;p&gt;C# (.NET 9 - The Stream Engine): For real-time data flow, .NET 9's Channels and Span provide an incredible balance between memory safety and high throughput. It handles massive streams without the garbage collector jitter we used to see in older versions.&lt;/p&gt;

&lt;p&gt;Rust/C++ (The Core): When I needed SIMD instructions and lock-free data structures for telemetry, I went to the metal. No runtime, no overhead.&lt;/p&gt;

&lt;p&gt;The Engineering Trade-off&lt;br&gt;
The real challenge isn't writing the code in one language; it's the Governance. How do you ensure that your Ruby orchestrator, your Go gateway, and your C++ engine all follow the same Clean Architecture principles?&lt;/p&gt;

&lt;p&gt;I’ve been applying Contract-Driven Development to ensure that even though the languages change, the architectural integrity remains.&lt;/p&gt;

&lt;p&gt;Let’s discuss:&lt;/p&gt;

&lt;p&gt;In your project, do you prefer a "Mono-stack" for easier maintenance or a "Multi-stack" for specialized performance?&lt;/p&gt;

&lt;p&gt;How do you handle "Context Switching" as a developer when jumping between Rust's memory management and Go's simplicity?&lt;/p&gt;

&lt;p&gt;Is Clean Architecture (SOLID) still viable when you are pushing for microsecond performance?&lt;/p&gt;

&lt;p&gt;I've documented these trade-offs in my projects: &lt;br&gt;
&lt;a href="https://github.com/kauandias747474-hue" rel="noopener noreferrer"&gt;https://github.com/kauandias747474-hue&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>go</category>
      <category>rust</category>
      <category>software</category>
    </item>
    <item>
      <title>Bypassing the Python GIL: Achieving Microsecond Latency with Shared Memory and C++ Engines</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Wed, 29 Apr 2026 07:52:41 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/bypassing-the-python-gil-achieving-microsecond-latency-with-shared-memory-and-c-engines-1d2g</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/bypassing-the-python-gil-achieving-microsecond-latency-with-shared-memory-and-c-engines-1d2g</guid>
      <description>&lt;p&gt;High-level languages like Python are incredible for developer productivity, but when you hit the wall of the Global Interpreter Lock (GIL) in mission-critical systems, things get messy.&lt;/p&gt;

&lt;p&gt;Recently, I’ve been working on an infrastructure ecosystem (UHI) where I needed to orchestrate heavy data workloads using Python without sacrificing the raw performance of the hardware. The solution? Stop fighting the GIL and start bypassing it.&lt;/p&gt;

&lt;p&gt;The Architecture: Shared Memory &amp;amp; Zero-Copy&lt;br&gt;
Instead of traditional IPC like Sockets or JSON over HTTP—which introduce massive serialization overhead—I implemented a Zero-Copy Data Pipeline.&lt;/p&gt;

&lt;p&gt;The strategy:&lt;/p&gt;

&lt;p&gt;C++ Telemetry Engine: Handles the heavy lifting, SIMD optimizations, and raw data processing.&lt;/p&gt;

&lt;p&gt;Shared Memory (mmap): We map a memory segment directly into the address space of both the C++ engine and the Python orchestrator.&lt;/p&gt;

&lt;p&gt;Binary Serialization: Using C-style structs to ensure that what C++ writes, Python reads instantly with zero translation.&lt;/p&gt;

&lt;p&gt;Why this matters&lt;br&gt;
In industrial automation or HFT (High-Frequency Trading) scenarios, a 10ms delay is an eternity. By using CPU Pinning and memory barriers, I managed to keep the latency deterministic even while using Python as the "control plane".&lt;/p&gt;

&lt;p&gt;I’d love to hear your thoughts:&lt;/p&gt;

&lt;p&gt;Have you ever integrated a high-level language with a C/C++ core?&lt;/p&gt;

&lt;p&gt;What’s your take on using Shared Memory vs. Lock-free queues for inter-process communication?&lt;/p&gt;

&lt;p&gt;At what point do you decide that Python isn't enough and move the entire logic to the "metal"?&lt;/p&gt;

&lt;p&gt;Check out my implementation logic here: &lt;a href="https://github.com/kauandias747474-hue/Python-Ultra-Hardened-Infrastructure-UHI-" rel="noopener noreferrer"&gt;https://github.com/kauandias747474-hue/Python-Ultra-Hardened-Infrastructure-UHI-&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>performance</category>
      <category>architecture</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Building a Bulletproof Tax Engine with Modern Java: Strategy, Parallelism, and Precision</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Thu, 12 Mar 2026 10:36:58 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/building-a-bulletproof-tax-engine-with-modern-java-strategy-parallelism-and-precision-4l7f</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/building-a-bulletproof-tax-engine-with-modern-java-strategy-parallelism-and-precision-4l7f</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzjyjuvz3qzdi3y666aim.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzjyjuvz3qzdi3y666aim.png" alt=" " width="800" height="712"&gt;&lt;/a&gt;&lt;br&gt;
In the financial world, "close enough" isn't good enough. When building a core engine for tax calculations, you face three main enemies: rounding errors, volatile business rules, and scaling bottlenecks.&lt;/p&gt;

&lt;p&gt;I recently developed a Tax Strategy Engine as a technical showcase to demonstrate how modern Java (17+) features can solve these challenges elegantly. This PoC isn't just about calculating percentages; it’s about Defensive Engineering and Software Governance.&lt;/p&gt;

&lt;p&gt;The 4 Pillars of the Architecture&lt;/p&gt;

&lt;p&gt;The Contract (Strategy Pattern)&lt;br&gt;
Tax laws change frequently. To keep the core engine agnostic, I implemented the Strategy Pattern. The engine doesn't know what it is calculating; it only knows it has a contract to fulfill.&lt;/p&gt;

&lt;p&gt;Benefit: Allows adding new taxes (VAT, Sales Tax, GST, ICMS) without changing a single line of the main engine code, honoring the Open/Closed Principle.&lt;/p&gt;

&lt;p&gt;The Shield (Banking Precision)&lt;br&gt;
Using double or float for money is a major error in financial development. Binary floating-point representation leads to rounding inaccuracies.&lt;/p&gt;

&lt;p&gt;The Solution: Exhaustive use of BigDecimal with explicit RoundingMode.HALF_UP.&lt;/p&gt;

&lt;p&gt;The Result: Cent-by-cent integrity throughout the entire pipeline.&lt;/p&gt;

&lt;p&gt;The Sentry (Fail-Fast and Immutability)&lt;br&gt;
Data corruption often happens when objects are modified across threads or initialized with invalid states.&lt;/p&gt;

&lt;p&gt;Java Records: I used record types to ensure data is immutable by default and thread-safe.&lt;/p&gt;

&lt;p&gt;Fail-Fast Validation: Using a rigorous constructor check, the system prevents the creation of objects with negative or null values, catching errors at the entry point and preventing the propagation of corrupt data.&lt;/p&gt;

&lt;p&gt;The Engine (Parallel Processing)&lt;br&gt;
Financial reports can involve millions of rows.&lt;/p&gt;

&lt;p&gt;Parallel Streams: The engine utilizes parallelStream() to distribute tasks across multiple CPU cores, ensuring high-throughput performance.&lt;/p&gt;

&lt;p&gt;Latency Simulation: By implementing TimeUnit sleeps, I demonstrated how the multi-threaded approach maintains performance even when individual operations have simulated latency.&lt;/p&gt;

&lt;p&gt;Technologies and Concepts Applied&lt;/p&gt;

&lt;p&gt;Modern Java: Records (17+), Functional Interfaces, Lambdas, Streams API&lt;br&gt;
Architecture: SOLID Principles, Strategy Design Pattern, Defensive Engineering&lt;br&gt;
Performance: Parallelism, Multithreading, Concurrent API&lt;br&gt;
I/O and I18n: Java NIO (Files/Paths), Internationalization (Locale/NumberFormat)&lt;br&gt;
Security: Privacy by Design (Data Anonymization/Masking)&lt;/p&gt;

</description>
      <category>java</category>
      <category>architecture</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Engineering a Reliable Autoloader: The Logic Behind the Test</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Mon, 09 Mar 2026 15:26:11 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/engineering-a-reliable-autoloader-the-logic-behind-the-test-1lmg</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/engineering-a-reliable-autoloader-the-logic-behind-the-test-1lmg</guid>
      <description>&lt;p&gt;When building a custom engine, the first thing you need is a way to handle classes automatically. But how do you ensure your mapping logic won't fail in production?&lt;/p&gt;

&lt;p&gt;The answer lies in a specific integration test: the AutoLoaderTest.php.&lt;/p&gt;

&lt;p&gt;The Core Logic: "Silent Instantiation"&lt;br&gt;
The goal of this code is to prove that the Segment Algorithm is working. Instead of manually requiring files, the engine must intercept a class call and translate it into a physical path.&lt;/p&gt;

&lt;p&gt;What this code validates:&lt;br&gt;
Namespace-to-Path Mapping: It confirms that a call like new App\Controller\User() correctly points to src/Controller/User.php.&lt;/p&gt;

&lt;p&gt;Case Sensitivity: It checks if the class name matches the file name exactly. This is vital for cross-platform compatibility (moving code from Windows to Linux).&lt;/p&gt;

&lt;p&gt;Recursive Discovery: It proves that the engine can navigate through deep subdirectories (e.g., App\Core\Security\Providers) using explode and implode logic to resolve the path.&lt;/p&gt;

&lt;p&gt;Why this test is essential:&lt;br&gt;
Scalability: It ensures the engine can handle hundreds of classes without manual configuration.&lt;/p&gt;

&lt;p&gt;Decoupling: The developer only needs to know the class name, while the engine handles the file system.&lt;/p&gt;

&lt;p&gt;Zero-Error Foundation: By testing the autoloader first, you ensure the very heart of the system is stable before writing any business logic.&lt;/p&gt;

&lt;p&gt;Testing the infrastructure is what ensures a professional, production-ready backend&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz858g01jsfl1sp1yb2r1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz858g01jsfl1sp1yb2r1.png" alt=" " width="800" height="922"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>softwareengineering</category>
      <category>backend</category>
      <category>architecture</category>
    </item>
    <item>
      <title>How I Built a Resilient Idempotency Engine for Financial Transactions (Vanilla Java)</title>
      <dc:creator>Kauan Oliveira</dc:creator>
      <pubDate>Sun, 08 Mar 2026 17:38:49 +0000</pubDate>
      <link>https://dev.to/kauan_dias_dcb9e0566058a5/how-i-built-a-resilient-idempotency-engine-for-financial-transactions-vanilla-java-4ieo</link>
      <guid>https://dev.to/kauan_dias_dcb9e0566058a5/how-i-built-a-resilient-idempotency-engine-for-financial-transactions-vanilla-java-4ieo</guid>
      <description>&lt;h1&gt;
  
  
  How I Built a Thread-Safe Idempotency Engine for High-Resilience Systems
&lt;/h1&gt;

&lt;p&gt;Building robust backend systems means preparing for the worst-case scenario. One of the most common issues in financial or critical systems is the &lt;strong&gt;Duplicate Request&lt;/strong&gt; problem. A user clicks a button twice, a network retry triggers a second call, and suddenly, you have a double-spending issue.&lt;/p&gt;

&lt;p&gt;To solve this, I developed a lightweight &lt;strong&gt;Idempotency Engine&lt;/strong&gt; in Java, focusing on a "Vanilla-First" approach to maintain total control over memory and performance.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚙️ The Architecture
&lt;/h2&gt;

&lt;p&gt;The engine acts as a &lt;strong&gt;State Interceptor&lt;/strong&gt;. It sits between the incoming request and the business logic. If a request with the same unique key arrives, the engine knows exactly how to handle it based on its previous state.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;LRU Cache (Least Recently Used):&lt;/strong&gt; I used a synchronized cache to manage transaction records in memory. This prevents &lt;strong&gt;Memory Overflow&lt;/strong&gt; by discarding the oldest entries under heavy load.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Thread-Safety:&lt;/strong&gt; By using &lt;code&gt;Collections.synchronizedMap&lt;/code&gt;, the engine is protected against &lt;strong&gt;Race Conditions&lt;/strong&gt;, which is essential for multi-threaded environments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anti-Fraud Window:&lt;/strong&gt; It includes an automatic 30-second preventive block for identical attempts to mitigate replay attacks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Failure Resilience:&lt;/strong&gt; The engine distinguishes between successful and failed transactions. If an operation fails, it allows an immediate retry, clearing the error trail to ensure the flow continues.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🛡️ Layers of Defense
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Challenge&lt;/th&gt;
&lt;th&gt;Defense Mechanism&lt;/th&gt;
&lt;th&gt;Goal&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Double Spending&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Unique Idempotency Key&lt;/td&gt;
&lt;td&gt;Prevent duplicate charges in real-time.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Replay Attack&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Timestamp Validation&lt;/td&gt;
&lt;td&gt;Block repeated packets captured by third parties.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Race Condition&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Memory Synchronization&lt;/td&gt;
&lt;td&gt;Prevent parallel requests from bypassing validations.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Memory Overflow&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;LRU Eviction Policy&lt;/td&gt;
&lt;td&gt;Maintain server stability under heavy load.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  🚀 Why Vanilla Java?
&lt;/h2&gt;

&lt;p&gt;Building this from scratch allowed me to implement a custom &lt;strong&gt;Registration&lt;/strong&gt; object to encapsulate transaction metadata (values, status, and timing) without the overhead of heavy frameworks. This is about deep understanding of system engineering and resilience.&lt;/p&gt;




&lt;h3&gt;
  
  
  Check out the source code:
&lt;/h3&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/kauandias747474-hue/Java-Backend-Architecture/tree/main/src/main/java/org/engine/core/idempotency" rel="noopener noreferrer"&gt;https://github.com/kauandias747474-hue/Java-Backend-Architecture/tree/main/src/main/java/org/engine/core/idempotency&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>backend</category>
      <category>architecture</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
