Haysquare
Hello there, is there any feature that can handle task scheduler in appwrite
TL;DR
The user is asking if there is a task scheduler feature in Appwrite. They want to know if it is possible to schedule Appwrite Functions like cron jobs or background tasks. The user is asking for clarification on what is meant by "task scheduler." Drake
what do you mean by task scheduler?
Haysquare
Something like cronjob or background tasks etc
Drake
You can schedule Appwrite Functions: https://appwrite.io/docs/functions#scheduled-execution
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- 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...