Systems | Development | Analytics | API | Testing

Development

Introducing Third-Party Service Integration for Choreo

We are excited to introduce a new feature in Choreo that provides the ability to register and consume third-party services through connections. This feature empowers developers to seamlessly integrate external services such as Twillio, Salesforce, etc. with their Choreo applications, opening up a world of possibilities for creating more robust and versatile applications.

Understanding PostgreSQL EXPLAIN: A Guide to Query Optimization

PostgreSQL's EXPLAIN command is a powerful tool that provides insights into how a query will be executed. It helps developers and database administrators identify potential performance issues in their queries. In this blog, we will explore what EXPLAIN is, when to use it, how to interpret its output, and techniques for optimizing queries based on the insights it provides.

Unit Testing in Node.js With Jest

Unit tests are essential for increasing the test coverage of a backend application, ensuring its reliability, functionality, and robustness. Jest has become one of the most popular solutions when unit testing in Node, due to its intuitive API, zero-configuration philosophy, and flexible approach to code transpilation. In this guide, you will learn more about Jest, explore its features, and see it in action through a complete example. Become a Jest unit testing expert!

Server-sent Events and WebSockets in Rack for Ruby

In the previous part of this series, we discovered how to create persistent connections in Rack in theory, but now we'll put what we learned into practice. The web has two formalized specifications for communication over a persistent connection: server-sent events (SSEs) and WebSockets. WebSockets are widely used and highly popular, but SSEs are far less well-known. Let's explore them first.

Using Cache-Control headers in Laravel for HTTP caching with Cloudflare

We recently helped our customer Holocafé prepare its Laravel application for a TV appearance on the German edition of Dragons’ Den (Höhle der Löwen) and the corresponding peak in traffic. The primary change was to utilize Cloudflare as an HTTP reverse proxy to cache the main page of the site and a few other mostly static pages that users were most likely to click on. The expectation was that 80-90% of the curious users could be served with pages from the HTTP cache.

Remote Build Caching: The key to fast, efficient builds

When it comes to mobile app development, slow build times are not only the biggest source of frustration for developers but also the greatest barrier to innovation and competitive advantage. We surveyed developers at DroidCon New York and they overwhelmingly reported that build delays hindered their ability to release new features, fix bugs, and iterate quickly. Two-thirds of respondents said they wait more than 10 minutes for their mobile builds.

EP13: First Principle Thinking for Architects

In this episode, Sanjiva and Asanka explore the power of first-principle thinking and why it’s a must-have approach for architects. They break down how this method helps tackle complex problems by focusing on fundamental truths rather than relying on assumptions or best practices. From root cause analysis to iterative refinement, they discuss how architects can apply first principles to design innovative and scalable solutions. Tune in to rethink your approach and elevate your architectural decision-making!

Improving Government Employee Retention: Top 5 Strategies

Federal government agencies are facing a growing workforce challenge. The looming retirement wave, particularly among experienced baby boomers, threatens to leave critical knowledge gaps in agencies that are already struggling with understaffing. To bridge this gap, government agencies must focus on appealing to a younger workforce that brings fresh perspectives, technological expertise, and a strong desire to make an impact.

Unleash Scalability: How Appian Executes 6 Million Processes Per Hour

Appian was already the scalability leader, but the Autoscale feature in our 24.4 release is taking our customers even further. Autoscale lets enterprises execute six million processes per hour. It's what today's IT teams need to handle unprecedented process volume without sacrificing agility. This blog is a technical overview of Autoscale. Appian is the process company. For more than 25 years, industry-defining organizations have turned to Appian to orchestrate their most important processes.

An Introduction to Java Map: What It Is and How It Works

The Java Map interface is a powerful data structure for handling key-value pairs. Present in the java.util package, it’s ideal for managing data associations where each key maps to a specific value. Common use cases include counting occurrences (e.g., word frequency in text), grouping data (e.g., products by category), or accessing items by specific identifiers (e.g., user IDs).