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
Resolving generators is already fast, but to make it as close to O(N) as possible we can implement a files cache that reads in a glob of files, then all generator matching would happen against the returned array.
This way we're only hitting the file system once - or at least limiting the number of times we directly hit the fs in generate. users can do whatever they want in their generators.
the files cache would be exposed to the instance
The text was updated successfully, but these errors were encountered:
Resolving generators is already fast, but to make it as close to
O(N)
as possible we can implement a files cache that reads in a glob of files, then all generator matching would happen against the returned array.This way we're only hitting the file system once - or at least limiting the number of times we directly hit the fs in generate. users can do whatever they want in their generators.
the files cache would be exposed to the instance
The text was updated successfully, but these errors were encountered: