Hello everyone.
I am using mfiles as my file storage. I communicate with it strictly by REST API for which I created middleware on Azure. As number of files grows, I realize I have a problem.
The rest api is returning me only X files. Of course, there is the limit parameter, but a lot of files means slower system. My first idea was to use some sort of paging, but I realize that mfiles rest api don't have anything like that. My other idea was to only fetch X LATEST files (latest meaning youngest). As I were exploring this way, I also couldn't find anything that would let me sort files by property - in my case created date.
What are my options?
Thank you all and have a successful day.