Alvin Crespoalvincrespo.hashnode.dev·Oct 16, 2024Build a Scalable Export in Ruby on RailsHey there! If you're a software developer with a few years of expertise or an entrepreneur establishing a platform and realize your customers require a way to export their data, this post is for you. I've been creating SaaS applications for 15 years ...33 readsRuby
Daniel Adesojiblog.sojidaniels.com·Jun 8, 2024Understanding Background Workers in Node.jsWhat Are Background Workers? Background workers are processes that handle tasks outside of the main application flow. These tasks are executed asynchronously, allowing the primary application to remain responsive and efficient. In the context of Node...1 like·50 readsworkers
Victor Olusolavictorolusola.hashnode.dev·Jan 1, 2024Implementing Celery with Django using RabbitMQIn web development, Django operates synchronous request-response cycle. However, certain tasks such as sending emails, processing large dataset, or handling time-consuming operations, can introduce delays that impact user experience. Let me demystify...7 likes·475 readsbackground worker