You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTML Generation is super serial and we can make it better to improve performance.
Feature: Optimize HTML Generation
As a core developer
I want to optimize the generation of HTML from a content type
So that I can deliver the form to implementors faster
Scenario: Parallel ProcessingGiven that content types have multiple attributes
And that each attribute is self-contained
When a content type is rendered in to HTML
Then the attributes should be manipulated in parallel
And the attributes should be manipulated in an async manner
Optimize HTML Generation
Parallel Processing
The text was updated successfully, but these errors were encountered:
IMHO, before tackling this we should reduce the code base by pulling content-type requirement checks out of the content-types module, preferably putting them in a shared-utilities repository Doing that will make it easier to refactor CT for optimized HTML generation.
HTML Generation is super serial and we can make it better to improve performance.
Optimize HTML Generation
The text was updated successfully, but these errors were encountered: