<?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: Swan</title>
    <description>The latest articles on DEV Community by Swan (@swan_h888).</description>
    <link>https://dev.to/swan_h888</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%2F380730%2Ffe26b13a-36eb-46a0-8ff3-7b6e2521fc4e.JPEG</url>
      <title>DEV Community: Swan</title>
      <link>https://dev.to/swan_h888</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/swan_h888"/>
    <language>en</language>
    <item>
      <title>Why queues don’t feel “instant” in real backend systems?</title>
      <dc:creator>Swan</dc:creator>
      <pubDate>Tue, 21 Apr 2026 08:26:56 +0000</pubDate>
      <link>https://dev.to/swan_h888/why-queues-dont-feel-instant-in-real-backend-systems-251j</link>
      <guid>https://dev.to/swan_h888/why-queues-dont-feel-instant-in-real-backend-systems-251j</guid>
      <description>&lt;p&gt;When I first learned about queues and background workers, I imagined something like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;request comes in&lt;/li&gt;
&lt;li&gt;job goes into queue&lt;/li&gt;
&lt;li&gt;worker picks it up immediately&lt;/li&gt;
&lt;li&gt;done&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In my head, everything was basically instant.&lt;/p&gt;

&lt;p&gt;But when you actually run a real system, it doesn’t behave like that.&lt;/p&gt;

&lt;h2&gt;
  
  
  There is always a gap
&lt;/h2&gt;

&lt;p&gt;Between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;pushing a job into the queue&lt;/li&gt;
&lt;li&gt;and a worker picking it up&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There’s always a small delay.&lt;/p&gt;

&lt;p&gt;Sometimes tiny. Sometimes noticeable.&lt;/p&gt;

&lt;p&gt;And that gap changes how the system &lt;em&gt;feels&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why that matters
&lt;/h2&gt;

&lt;p&gt;That delay is what makes things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;async processing feel “slow” sometimes&lt;/li&gt;
&lt;li&gt;jobs appear “stuck”&lt;/li&gt;
&lt;li&gt;ordering behave differently than expected&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;you upload something&lt;/li&gt;
&lt;li&gt;nothing seems to happen for a moment&lt;/li&gt;
&lt;li&gt;then suddenly everything completes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s not a bug. That’s how the system actually works.&lt;/p&gt;

&lt;h2&gt;
  
  
  Seeing it vs imagining it
&lt;/h2&gt;

&lt;p&gt;This is hard to understand just by reading or coding.&lt;/p&gt;

&lt;p&gt;You kind of have to &lt;em&gt;see it happen&lt;/em&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;when the job enters the queue&lt;/li&gt;
&lt;li&gt;when the worker picks it up&lt;/li&gt;
&lt;li&gt;how long it waits&lt;/li&gt;
&lt;li&gt;how timing affects everything&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  I tried visualizing it
&lt;/h2&gt;

&lt;p&gt;So I built a small interactive live demo where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;you upload an image (or use a demo)&lt;/li&gt;
&lt;li&gt;it goes through a real pipeline (API → queue → worker → processing)&lt;/li&gt;
&lt;li&gt;you can see logs, timing, and each step&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can try it here:&lt;br&gt;
&lt;a href="https://tryinfralab.com/flows/image-optimization" rel="noopener noreferrer"&gt;tryinfralab.com&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Curious about your experience
&lt;/h2&gt;

&lt;p&gt;If you’ve worked with queues or async systems:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;did this timing behavior ever confuse you?&lt;/li&gt;
&lt;li&gt;what part felt hardest to understand at first?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m trying to figure out which parts are actually worth visualizing more.&lt;/p&gt;

&lt;p&gt;Thinking about digging deeper into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;worker timing and delays&lt;/li&gt;
&lt;li&gt;retries and failures&lt;/li&gt;
&lt;li&gt;what happens under load&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But not sure which direction is most useful yet.&lt;/p&gt;

</description>
      <category>redis</category>
      <category>webdev</category>
      <category>backend</category>
      <category>architecture</category>
    </item>
    <item>
      <title>What actually happens after you upload an image?</title>
      <dc:creator>Swan</dc:creator>
      <pubDate>Mon, 20 Apr 2026 09:19:40 +0000</pubDate>
      <link>https://dev.to/swan_h888/what-actually-happens-after-you-upload-an-image-5e3o</link>
      <guid>https://dev.to/swan_h888/what-actually-happens-after-you-upload-an-image-5e3o</guid>
      <description>&lt;p&gt;I built a tool to visualize what happens after you upload a file (queue, worker, logs). &lt;/p&gt;

&lt;p&gt;Backend systems can feel pretty abstract when you're learning.&lt;/p&gt;

&lt;p&gt;You hear about queues, workers, background jobs… but it’s hard to actually see what’s happening.&lt;/p&gt;

&lt;p&gt;So I tried building a small interactive live demo to make that visible.&lt;/p&gt;

&lt;p&gt;You can:&lt;/p&gt;

&lt;p&gt;upload an image (or use a demo)&lt;br&gt;
and watch it go through a real backend flow&lt;br&gt;
(API → queue → worker → processing → storage)&lt;/p&gt;

&lt;p&gt;Here’s what it looks like:&lt;/p&gt;

&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%2F3dwi4wtc9ohmm8g5c8cn.gif" 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%2F3dwi4wtc9ohmm8g5c8cn.gif" alt=" " width="560" height="298"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It’s not just an animation, it runs real services and shows:&lt;br&gt;
live logs&lt;br&gt;
timing for each step&lt;br&gt;
system state changes&lt;/p&gt;

&lt;p&gt;Would love feedback.&lt;br&gt;
You can try it here (takes ~5 seconds):&lt;br&gt;
&lt;a href="https://tryinfralab.com/flows/image-optimization" rel="noopener noreferrer"&gt;tryinfralab.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>backend</category>
      <category>architecture</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
