What is Kubernetes? Business Container Management

Kubernetes

App development and deployment is an ever-evolving and highly competitive industry. These days, that means looking at ways to ensure apps work across a variety of platforms and devices. This, invariably, means exploring the container environment, where products like Kubernetes and Docker rule. But what is Kubernetes? Is it just another version of Docker, or something completely different? Table…

Read More

What is command line interface (CLI)? CLI Basics and Docker CLI

command line interface

CLI stands for Command Line Interface, although it may sometimes be short for Command Line Interpreter or Command Line Input. The command line is where users input text to command the program they are working with to perform a specific task. Command lines can control operating systems, apps, communication tools, games, development tools and so…

Read More

DevOps, Containers, and the Cloud: The Evolution of Information Technology

In 2020, the cloud reigns supreme, containers make app deployment as easy as ever, and developers work directly with operators. Discover the evolution of information technology and how software development has benefited from it. Table of Contents The Current State of Computing Development Process Application Architecture Deployment and Packaging Application Infrastructure How IT Evolved To…

Read More

How the History of IT Has Changed Over the Years – And Will Keep Changing

History of Information Technology

Over the last half-century, we’ve seen the advent, rise, and evolution of IT in response to technological and social changes. What once was necessary has become obsolete, and technology that we couldn’t have imagined has become vital to everyday life and business. Below, you’ll find an introduction to the different eras of IT, each of…

Read More

Comparison of REST vs. SOAP API

Soap vs Rest API

TLDR: Unlike REST (REpresentational State Transfer), SOAP (Simple Object Access Protocol) is a messaging service. REST operations are data-driven, whereas SOAP is a function driven architecture. SOAP solely uses the XML schema data format. On the other hand REST is permitted to use HTML, XML, JSON, and more. As far as bandwidth, REST APIs are going to need…

Read More

Super Easy Batch Processing with Docker and IronWorker

docker logo

Batch processing means getting a lot of one type of task done all in one go, saving time, effort and money. There are many ways to do this, but businesses are always hunting for more efficient ways to do more without over-complicating their apps or business tools. Today, we’re going to look at how a user-friendly…

Read More

Every Web Application Needs a Background Processing Queue

background jobs

Every web application has crucial tasks that need to run in the background. They run outside of the main web response loop, but ensure any number of critical jobs gets done to keep the web-based application running smoothly. This means end users enjoy an engaging app experience, without it grinding to a halt every time…

Read More

Amazon SQS (Simple Queue Service): Quick Overview and Tutorial

Amazon SQS

Now that’s quite a queue! Queues are a powerful way of combining software architectures. They allow for asynchronous communication between different systems, and are especially useful when the throughput of the systems is unequal.   Amazon offers their version of queues with Amazon SQS (Simple Queue Service). For example, if you have something like: System A -…

Read More

What is a Docker Image? (And how do you use one with IronWorker?)

What is a Docker Image? (And how do you use one with IronWorker?)

Love them or hate them, containers have become part of the infrastructure running just about everything. From Kubernetes to Docker, almost everyone has their version of containers. The most commonly used is still Docker.  IronWorker was among the very first to combine serverless management with containers. In this article we will give a high-level overview…

Read More

What is Python Celery?

celery python

Celery is an implementation of the task queue concept, one that significantly enhances the end user’s experience. It also benefits developers by saving them time, so that they can focus on what really matters — their ideas and innovations. That is why it remains one of the most popular background job managers in the Python…

Read More