I have data in table (some 500 rows). I need to fetch that data and store it somewhere. Later i want to find a row from that data and use it. In many flows i will be using this data to find some specific row. I need to know what is better to use. Fetch data and store in datastore and then when searching find it using find or get data and store in a PB structure and loop it over and find the row needed.
I would create a function to fetch data and one function to search data. this search data function will be called more than 100 times in one flow. So which is better approach to use?
Thanks