Lightna Lane is almost there! Read more | Lightna release is coming! Keep me updated
|||
Content

The Lightna Way

Lightna follows a frontend architecture that differs from the traditional model where SSR apps handle everything at runtime β€” including data fetching, heavy logic and constant overhead from universal frameworks. As projects grow, this approach tends to slow down and often leads to heavy caching β€” including full page caching with complex invalidation logic or outdated data on the site. This increases development complexity and limits flexibility and performance in the long term.

Instead, Lightna decouples rendering and moves all data processing and overhead to background tasks β€” indexing and compilation (see Coin Concept). The frontend uses preprocessed data that updates continuously in near real-time, usually within 1–2 seconds. This enables sub-5ms rendering, avoids performance degradation, and simplifies frontend development.

This makes the frontend effectively headless β€” it relies only on indexed data and doesn't depend on the platform codebase.

The Main Pillars of the Lightna Approach

  • Server-side oriented – Server-side rendering improves SEO and enhances user experience due to a lightweight client-side.
  • Excellent Performance – Built on the Coin Concept, it minimizes disk and database usage during rendering and is structured into three components: the compiler, indexer, and renderer, making the frontend lightweight and fast.
  • Scalable performance - adding customizations and new features introduces minimal performance trade-offs.
  • Sophisticated Modularity – Everything can be extended with minimal conflicts between modules, even when multiple modules modify the same extension point.
  • Safe upgrades – Incompatibilities trigger an exception at the compilation stage, with continuous improvements to cover more cases.
  • Flexibility – Lightna modules impose minimal restrictions, allowing extensive customization.

Session

To minimize bottlenecks during page rendering, Lightna uses a custom session-handling approach:

  • No Unnecessary Session Start – The session starts only when explicitly triggered by the application or user action, preventing empty sessions in storage and improving reliability against bots and high traffic.
  • No session locks during rendering – During rendering, Lightna accesses the session in read-only mode, ensuring smooth surfing without blocking server processes.
  • Lazy Session Read – The session starts only on the first read attempt.
  • Compatible with Progressive Rendering – The cookie expiration is updated before rendering starts, allowing progressive rendering.
  • The session contains indexed data, updated through session writes, new builds, or manual version increments, significantly reducing database queries for session-related data.
  • Session-safe caching, when using page caching, session data is not available at the engine level.

Deployment & Build

Lightna meets the following requirements:

  • Seamless deployment
  • Only changed assets are invalidated in the browser after deployment
  • The build phase runs without a database and indices
  • Failed builds do not break the current build
  • Configuration changes take effect only after applying the new config

Indexer Design

The Lightna indexer processes entities in batches, significantly accelerating performance. Background processing is based on a changelog and direct access to the project database, making Lightna fully independent of the application codebase.

The indexer is designed for fast data assembly for representation based on existing database data, ensuring high performance. It is not intended for heavy or slow operations, especially API requests or complex calculations. Such operations should be handled as a separate process that prepares and stores data in the database for the indexer to use.

Object Manager & Lazy Initialization

Object creation is delegated to an internal object manager. Dependencies are compiled, and their instantiation is deferred until first use. This optimizes performance and reduces memory usage.

Autoload

Lightna avoids using the default Composer autoloader, including package-specific autoload files, as they can become a performance bottleneck. Instead, it generates a more optimized class map. For PSR-4 packages that do not include custom autoload files, Lightna automatically indexes their classes.

Rendering-Action Split

Lightna enforces a strict separation between page rendering and actions. Pages are always rendered via GET, while actions are triggered by POST and return JSON. Mixing these leads to poor code quality and a bad user experience.

Extending & Visibility

In favor of extensibility, Lightna core modules avoid using private, self, and readonly (as it behaves like private) in PHP, as well as private methods in JavaScript. While this approach is recommended for third-party modules, it remains optional for custom project modules.

Abstraction Layers

Since Lightna is primarily focused on frontend rendering, its rendering process is simplified thanks to the Coin Concept. As a result, it has significantly fewer abstraction layers compared to general-purpose frameworks with high complexity.
This doesn’t mean additional layers won’t be introduced in the future, but our goal is to keep the architecture simple and efficient.

Key Development Principles

Lightna is developed with a strong focus on principles that enhance modularity and extendability. The key principles are composition, SRP, and OCP. While not all code fully adheres yet, Lightna is evolving toward a more composable and principle-driven architecture.

At Lightna, we believe that balancing solutions and code quality is essential, especially in the early stages of a project or feature. At this phase, focusing on a solid architectural approach is more valuable than perfect code. A thoughtful structure enables flexibility and scalability, while code quality can be refined over time without major refactoring.

Versioning Policy

Our versioning strategy follows Semantic Versioning principles with a more flexible approach to minor version bumps.

  • MAJOR versions are reserved for significant architectural changes or widespread breaking changes.
  • MINOR versions may introduce small breaking changes, provided they are well-documented and impact only edge cases or rarely used features.
  • PATCH versions include bug fixes and non-breaking improvements.

βš™οΈ  Documentation Review

Noticed an issue or need more details? Submit your feedback for this page.
Leave a Feedback