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
{{ message }}
This repository was archived by the owner on Oct 20, 2022. It is now read-only.
Is it possible to generate a random number of combinations (like 10,000) instead of just computing all possible combinations?
It's nice to have the possibility to test all possible combinations, but when the range is broad or you have too many variables in the strategy, there is no way to get node to manage the memory usage even when use the max-old-space-size option when running node..
Or you can maybe optimize the memory usage when the combinations are calculated?
The overall use case would be to randomly brute force a broad range of combinations and then reduce to a small range where all combinations can be tested..
Is it possible to generate a random number of combinations (like 10,000) instead of just computing all possible combinations?
It's nice to have the possibility to test all possible combinations, but when the range is broad or you have too many variables in the strategy, there is no way to get node to manage the memory usage even when use the max-old-space-size option when running node..
Or you can maybe optimize the memory usage when the combinations are calculated?
The overall use case would be to randomly brute force a broad range of combinations and then reduce to a small range where all combinations can be tested..