is it possible to make async cloud function with sdk or u still have to use smth like multithreading/asyncio coroutine
Not with the SDK because the SDK does not have any async capabilities.
Also, the function doesn't either because it uses flask
Next version might support some asyncio...
ah i see 🥲
Recommended threads
- The current user is not authorized to pe...
I want to create a document associated with user after log in with OAuth. The user were logged in, but Appwrite said user is unauthorized. User is logged in wi...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...