Ben Wilson
05/25/2023, 2:11 AM@op()
def op1():
return list_of_my_strings
@op()
def op2(my_string):
# Write string to db table
@graph()
def string_processor():
string_list = op1()
for my_string in string_list:
op2(my_string)
where op2 is what I'd like to run in parallel. Apologies if my code is bad.Ben Gatewood
05/25/2023, 3:47 AMBen Wilson
05/25/2023, 10:02 PMBen Gatewood
05/25/2023, 10:03 PMBen Wilson
05/25/2023, 10:06 PMBen Gatewood
05/25/2023, 10:07 PMBen Wilson
05/26/2023, 1:32 PMchris
05/26/2023, 4:08 PMBen Wilson
05/30/2023, 9:24 PM