Skip to content

Implement disabling request isolation #153

@grantcopley

Description

@grantcopley

Disabling Request Isolation
By default, CBWIRE handles each lazy-loaded component request separately. However, if you want to bundle all updates into a single network request, disable the isolation behavior using lazyIsolate=false:

// ./wires/UserActivity.cfc
component extends="cbwire.models.Component" {
    lazy = true;
    lazyIsolate = false;
    // Other component methods...
}

Now, if multiple UserActivity components are on the same page, their updates will be grouped into a single network request when the page loads.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions