🏠 Hem
Benchmarkar
📊 Alla benchmarkar 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List-applikationer 🎨 Kreativa fria sidor 🎯 FSACB - Ultimata uppvisningen 🌍 Översättningsbenchmark
Modeller
🏆 Topp 10 modeller 🆓 Gratis modeller 📋 Alla modeller ⚙️ Kilo Code
Resurser
💬 Promptbibliotek 📖 AI-ordlista 🔗 Användbara länkar
advanced

Advanced Asynchronous Patterns

#coding #async #reactive

Refactor synchronous data pipelines into reactive streams.

Refactor a legacy data processing pipeline that reads XML files, transforms them, and writes to a SQL database. The current implementation blocks I/O threads causing high latency. Rewrite the logic using a reactive programming paradigm (such as Project Reactor or RxJava) to achieve non-blocking backpressure. Specifically, handle the scenario where the database cannot keep up with the ingestion rate by implementing a buffering strategy that prioritizes recent data over old data, ensuring system stability under load.