
I have a function that makes asynchronous calls to different Appwrite collections. This is how I make the call:
TypeScript
 await Promise.allSettled([
                deleteAllPosts(userId),  
                removeAllAvatars(userId), 
                removeAllReplies(userId),
                removeAllItems(userId),
                deleteUserHistory(userId)
            ]);
I asked gpt if I can optimize this process more, and it recommended to use p-limit. Is Appwrite compatible with p-limit?
TL;DR
 Developers asking about `p-limit` compatibility with Appwrite for optimizing asynchronous calls in their code. They are currently using `Promise.allSettled` for multiple Appwrite collection operations.Recommended threads
- Email templates partially broken in non-...Good afternoon! Non-english locales are missing some variables introduced in recent releases. That makes the sent emails look bad. The issue has been raised a... 
- Fail to access the hosted siteHi there I am facing an issue with the sites. My site is properly hosted on Appwrite but the issue is that when accessing the site from this URL https://instant... 
- Error 503 Response object too largeI have a video embedded in an iframe. I've tried hosting the file with my site source, using appwrite storage and even via youtube. It works fine locally, works... 
