Latest Updates

Documenting code, one commit at a time.

Preventing Redundant Job Dispatch in Landing

Introduction

In the devlog-ist/landing project, which focuses on building landing pages, we encountered an issue where the AutoSyncPostGenerationJob was being dispatched multiple times per hour. This led to unnecessary processing and potential performance bottlenecks. The challenge was to ensure the job was only dispatched once per configured hour.

The Problem: Redundant Job Dispatch

Read more