<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Async Architecture on Interesting AI</title>
    <link>http://www.wfcoding.com/en/tags/async-architecture/</link>
    <description>Recent content in Async Architecture on Interesting AI</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-US</language>
    <copyright>火云</copyright>
    <lastBuildDate>Sat, 15 Aug 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="http://www.wfcoding.com/en/tags/async-architecture/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Async and Concurrency Architecture: Fixing AI&#39;s Synchronous Blocking Patterns to Improve System Throughput</title>
      <link>http://www.wfcoding.com/en/articles/design/0115/</link>
      <pubDate>Sat, 15 Aug 2026 00:00:00 +0000</pubDate>
      <guid>http://www.wfcoding.com/en/articles/design/0115/</guid>
      <description>&lt;p&gt;There is a very common problem with AI-generated code:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The code runs, but slows down as soon as multiple users access it.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Especially in Python Web projects, even when using FastAPI and functions are written as &lt;code&gt;async def&lt;/code&gt;, operations such as database queries, HTTP requests, and large language model (LLM) calls may still block synchronously.&lt;/p&gt;
&lt;p&gt;The key issue is:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;code&gt;async def&lt;/code&gt; is merely the entry point of an asynchronous function — it does not automatically turn the synchronous code inside it into asynchronous code.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;For systems that heavily rely on external I/O — such as web services, knowledge bases, and agent platforms — establishing a unified async and concurrency architecture is an important foundation for improving system throughput.&lt;/p&gt;
&lt;hr&gt;</description>
    </item>
  </channel>
</rss>
