Hello guys,
I have a dart function in Appwrite, whiche whole purpose is to load the ids, names and email of all available users. Currently, there are a litte over 1.3k Users in the Database. This causes the function to load for 16 Seconds to retrieve all the user information. The code is the following: await users.list(queries: [Query.limit(5000)]);.
Why is the request taking so long? Is there a way to speed it up?
Cheers for the help!
Recommended threads
- DeploymentStatus enum value `canceled` m...
Hey, Sorry if it has been reported already, I found an issue using the Dart SDK where the `canceled` enum value is missing from `DeploymentStatus`. This causes...
- Synchronous function execution timeout w...
I am calling server functions with xasync = true and I still get this error message. Synchronous function execution timed out. Use asynchronous execution inste...
- Flutter OAuth2 webAuth Bug?
I created with flutter an app where I can login in with my Microsoft Account. When I compile it to Web (WASM) or Android (aab) then there is no problem what so ...