How to accumulate the stream data of for loop( I want to keep in a seperate variable once my loops completed I want to do further operation on all sets of data at once)
Would storing individual pieces in a database be suitable for your use case?
No, my requirement is I have a list of image URLs; I am uploading it one by one to Zoho. I want to collect all the upload IDs further. When I am going to create a Zoho ticket, I will use collectively these upload IDs.
my current though process .
I should use redis set with ttl of 1 or 2 minutes.
can you help to another approach If there is no requirement of db or any ways to hold this data
You can aggregate the data at the “Done” branch of the loop, would that work for you?
Something like:
Thank you so much @jabbson . really helped a lot
Great, feel free to mark the answer as solution if it helped.
Cheers.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.