Speed up "cold start" #1069
simplenotezy
started this conversation in
Ideas
Replies: 1 comment
-
The reason for the latency is that a nest application has to be created. Nest can be a bit slow creating three DI tree and application because of all the steps it needs to take. Any database connection you say is necessary has to be connected, which can also add to overhead. You can use lazy module loading to speed things up a bit, but there's nothing nest-commander can easily do about it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can anything be done to reduce the latency from when you hit enter to when the command is run? Not sure if SWC or Vite could help at all, but they have fast "cold" starts.
Example:
clijwt.mov
Beta Was this translation helpful? Give feedback.
All reactions