@radb0310 Thank you for the answer, can you please elaborate more
i want to download a file also, but i can't find a way to choose a location for it. And also i can't grab the URL of the file from the website.
when i click on the button i have this message :
(File is downloading : BrowserautomationStudio is downloading file. You can wait for it and obtain file name with "Wait File Download" action.)
Dealing with huge text files in multithreads
-
im using multithreaded bot of around 200 threads, no issue at all, but the longer the script runs the bigger the text files become. eventually bas becomes unresponsive because 200 threads loads a huge text file of about 30k+ lines.
Each thread writes to this file as it needs to be updated by every threads and also read in every file. Right now I read the text file to a list, and checks if the list contains the same string.
How can I do this to offload the computation required? High amount of threads is required, each thread will write to it and each thread needs an updated resource/list of this.
I was looking for a "Global list" so I dont have to read/write every thread but no such options.
-
@0xSentinel you can use resources. access to file lines sharing.