However, what do you exactly mean with this:
‘‘Also if you have called data into the app try to pull from on page data instead of multiple Do Search For’s. Seems to speed things up.’’
Also, say you have a repeating group showing a list of grocery items you need to buy.
The Do a Search For way would have you set the data source for the repeating group as Search For, Grocery items, and then you would filter only items that are associated with the current user.
This way the system has to search every saved grocery item, and then display only the relevant ones. Meaning if there are a million data entries, it must search every one before returning a result.
Instead, if you saved the grocery items to the user as a list, you can set the data source for the repeating group as Current User’s Grocery Items List
Now the system only views the relevant grocery items and doesn’t have to search every single grocery item piece of data, resulting in quicker loading times for a repeating group.
Also, like it was mentioned, once you have done a Do a Search for on a page, try to re-use that information instead of doing another search for the same data.