When is this a good option?
This can be a good option, if any of the following situations apply:
- your array is large (e.g. larger than 1000 indices)
- access speed to your persistent array data is crucial (Sharepoint list too slow!)
How to build the flows
Storage
Convert the array to a string, then to a json format, then store it to OneDrive.
Retrieval
Get the file content, then use the expression
json(base64ToString(body('Get_file_content')?['$content']))
to convert it back to a format that can be used to intialize your array.


No comments:
Post a Comment