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, new threads are created for every search. To reduce operating system overhead, it is better to reuse threads by pausing and later resuming them. I am planning on implementing this soon.
Additionally, small memory savings can be had by using the same stop variable for all threads.
Use the same stop variable for all threads
Reuse threads
examine types and reduce their width when possible
The text was updated successfully, but these errors were encountered:
Currently, new threads are created for every search. To reduce operating system overhead, it is better to reuse threads by pausing and later resuming them. I am planning on implementing this soon.
Additionally, small memory savings can be had by using the same stop variable for all threads.
The text was updated successfully, but these errors were encountered: