
I have a ton of functions performing tasks, big and small, like user signup document writes, cron db cleanup jobs, essentially all writes on the database are mostly via functions with users not writing directly to DB via SDK.
I currently am using dart runtime for functions but I have seen issues like function failures and timeouts. With recent addition of Go got me thinking how much of a performance different would it make ? Would it make sense to migrate certain intense functions from dart to Go ?
Has anyone done any performance testing who can share results ?

Are you using appwrite cloud?

I think currently Dart is one of the most performant runtimes. If you are self hosting, you should scale the containers and set the variables in order to run them concurrently and achieve better performance.

For example: _APP_WORKERS_NUM
Recommended threads
- When connecting to VCS (Version Control ...
Hello, when I try to define in my function the root path of a function I get this when I click "Update".
- How do you strategically secure day's wo...
I worked entire day to try and solve how to use clerk such that it handles checking user's authentication purely server-side. I wasted entire day on a loop of a...
- queries.map is not a function
Query.createdBefore doesnt work ``` tables.updateRows({ databaseId: process.env.APPWRITE_DATABASE_ID, tableId: process.env.APPWRITE_TABLE_ID, ...
