-
Notifications
You must be signed in to change notification settings - Fork 125
Could the program run multiple queries in parallel? #9
Comments
It depends on your queries. The algorithm is this: GetOldTweets3/GetOldTweets3/manager/TweetManager.py Lines 64 to 69 in 34078e1
So in a common case you can't get the parallel execution since you don't know the next cursor ( But you can run queries in parallel if you can split your single query. For example, if you use It seems that Twitter has some per IP limitations. Keep this in mind. |
Ok awesome! My queries are date based, so I will try to run multiple queries at the same time, as you said. Thanks a lot! |
If you split by dates then |
You mean that i will have to send queries like:
? |
Yes, exactly. |
Ok perfect !! Thanks a lot! |
Hello!!
The program is awesome, congrats!
I am using the program to run very heavy queries that take a long time to be completed, and I was wondering if the program could be used to run queries on parallel. and if so, direction on what needs to be changed.
The text was updated successfully, but these errors were encountered: