Skip to main content
Back to Blog
performance runtime speed infrastructure

High-Performance Runtime

Swifty Team Jan 2, 2026 2 min read

5x faster page loads is a number that sounds like marketing, so let's be specific about what it means and how we got there.

The improvement applies to the class of pages most affected by the previous architecture: complex detail pages with multiple related record panels, computed fields, and multi-source data. The simpler pages were already fast; the complex ones had room for significant improvement.

What Changed

Runtime optimization. The core execution environment was tuned for the specific workload profile of the platform — many small operations per request rather than a few large ones. This class of optimization produces significant gains for the specific workload and has limited generalization, which is why it hasn't been done until now: it requires deep profiling of real production traffic to know what to tune.

Precompilation. Configuration definitions that were previously compiled on every request are now compiled once and cached in a format that's orders of magnitude faster to evaluate. The first request pays the compilation cost; subsequent requests skip it entirely. For high-traffic pages, this compounds significantly.

Response streaming. Pages now begin sending content to the browser before all data is loaded. The visible elements arrive and render while the remaining data loads in the background. Perceived load time — how long it takes for the page to feel usable — drops dramatically, even for pages where total data loading time is unchanged.

The 5x in Practice

A complex detail page that previously took 1.2 seconds to load now takes 240 milliseconds. For a user who opens dozens of records per day, that's minutes recovered each day. Over a team of 10, that's real productivity time, not theoretical.

The Baseline Effect

Making the runtime faster doesn't just benefit the slowest pages. It raises the baseline for every page. Operations that were already fast become faster. The platform feels uniformly responsive rather than fast-for-simple-pages-and-slow-for-complex-ones.

A fast platform is a better platform. The new runtime delivers it.

Related posts

Composed Data Sources

Chain and relate data sources for rich dashboards — compose complex data views from simpler sources without writing code.

Computed Expressions

Transform data with template expressions and built-in functions — format, combine, and derive values from your data without code.

Cross-Source Data Joins

Combine data from multiple sources in one view — join records from your database with data from external services using a shared key.