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
Currently, we do a few things in the node process (instead of within the sandbox context):
Require the application factory (require('~fastboot/app-factory'))
Create the application factory (AppFactory.default())
Boot the application (app.boot())
Create an application instance instance (app.buildInstance())
Boot the application instance instance (instance.boot())
Invoke instance.visit
Everything in this list except the last item should actually be done within the sandboxed VM context instead. This will allow these steps to be further optimized and shared across visits (since the VM scripts we evaluate share bytecode and compilation information), and it will also significantly improve the prototype extension compatibility (#170).
The text was updated successfully, but these errors were encountered:
Currently, we do a few things in the node process (instead of within the sandbox context):
require('~fastboot/app-factory')
)AppFactory.default()
)app.boot()
)app.buildInstance()
)instance.boot()
)instance.visit
Everything in this list except the last item should actually be done within the sandboxed VM context instead. This will allow these steps to be further optimized and shared across visits (since the VM scripts we evaluate share bytecode and compilation information), and it will also significantly improve the prototype extension compatibility (#170).
The text was updated successfully, but these errors were encountered: