DEV Community

Cengiz Özşaylan
Cengiz Özşaylan

Posted on

Engineering for Speed: Lessons from ReBALKAN’s Four-Platform Performance Tests

A multilingual marketplace has a performance problem before it has traffic.

Every additional language can introduce new templates, fonts, assets, routing rules, and content variations. Every new category can add filters, images, data calls, and third-party integrations. If those layers are allowed to accumulate without discipline, the platform becomes slower long before the team considers performance work “finished.”

At ReBALKAN, we treated speed as an architectural requirement from the start. The platform is being developed for several Balkan countries and languages, with a roadmap that can extend beyond classifieds into property, vehicles, accommodation, jobs, professional services, tourism, business directories, reservations, and other regional services.

That scope made one rule clear: new functionality should not automatically mean a heavier user experience.

Why one benchmark was not enough

A single Lighthouse result is a useful diagnostic, but it is still one measurement from one engine and configuration. We wanted a broader view, so we tested ReBALKAN with four independent services:

  • Google PageSpeed Insights
  • GTmetrix
  • SpeedVitals
  • GiftOfSpeed

The published runs reached the highest result available on each service. PageSpeed Insights returned 100 for Performance, Accessibility, Best Practices, and SEO. GTmetrix returned Grade A with 100% Performance and 100% Structure. SpeedVitals and GiftOfSpeed also produced maximum performance results in their respective tests.

The individual reports and measurement details are collected on the ReBALKAN performance evidence page.

Agreement between tools does not eliminate every benchmarking limitation. It does, however, reduce the chance that the story depends on one unusually favorable test configuration.

Performance is a chain, not a switch

There was no single “make it fast” change.

The result came from treating the delivery path as a connected system. We focused on lightweight document structures, limited network requests, optimized rendering paths, efficient server and CDN delivery, stable layouts, and strict control over third-party scripts.

Those choices reinforce one another.

A smaller page can be transferred quickly, but it can still feel slow if the browser must execute expensive work before responding. A fast server response can be wasted by a long dependency chain. A visually complete page can still create a poor experience if elements move while the visitor is trying to interact.

That is why the most useful performance conversation combines several questions:

  1. How soon does meaningful content become visible?
  2. Does the layout remain stable while the page loads?
  3. Can the browser respond immediately to input?
  4. Does the page remain efficient on mobile devices and ordinary networks?
  5. Can the architecture preserve these properties as features are added?

What the measured metrics mean

Largest Contentful Paint is useful because it approximates when the main visible content has appeared. Total Blocking Time highlights periods when the main thread is unable to respond. Cumulative Layout Shift measures unexpected movement that can make a page frustrating or difficult to use.

In the published ReBALKAN runs, the platform recorded extremely low paint times, zero layout shift, and zero or near-zero blocking time depending on the testing service.

Those numbers matter because they correspond to recognizable user experiences: content appears quickly, controls are available without delay, and the interface does not move under the user’s finger.

Accessibility and SEO belong in the same engineering discussion

It is easy to reduce “performance” to speed alone. The PageSpeed result was more valuable because the same run also reached 100 in Accessibility, Best Practices, and SEO.

These categories are not interchangeable, but they overlap at the level of engineering discipline. Clear structure helps assistive technology and search engines understand a page. Stable, responsive interfaces are easier to navigate. Modern resource handling reduces avoidable technical risk. Lightweight pages make it easier for users and crawlers to reach content reliably.

Optimizing only a headline speed number would have missed that broader quality goal.

The challenge of multilingual growth

A regional platform cannot stay artificially simple forever. Each market brings different language content, categories, location structures, user expectations, and commercial requirements.

The practical goal is therefore not to freeze the product at its smallest possible size. It is to create a foundation where growth is intentional and measurable.

For us, continuous independent testing serves as a guardrail. When a new integration, design element, or feature is introduced, performance can be compared against a known standard. A regression becomes visible before it turns into permanent technical debt.

Being precise about “fastest worldwide”

ReBALKAN uses “fastest worldwide” as a brand claim based on the published tests and its market research. On a 100-point scale, nothing scores higher than 100, so a platform reaching the ceiling shares the top measurable tier with every other platform that can achieve the same result.

This is not an official global ranking certificate. It is also not a promise that every future test will display identical values. Laboratory results can vary by date, device, network, location, and methodology.

That distinction is important. Transparent limitations make technical evidence more credible, not less useful.

The larger lesson

The most transferable lesson from this work is not that every project must chase four perfect screenshots. It is that performance decisions are easiest to preserve when they are made early, measured repeatedly, and connected to the product’s real growth plan.

If you are building a multilingual or multi-market product, ask what each new layer costs in requests, rendering work, layout stability, and long-term complexity. Measure the system with more than one tool. Publish the methodology as well as the result.

You can review all four reports, Core Web Vitals, and the measurement note here:

ReBALKAN — complete independent performance results

Top comments (0)