#Limit of simultaneos access on my application Next.js hosted on Vercel
14 messages · Page 1 of 1 (latest)
🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord
🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize
✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)
it's basically unlimited, that's the idea of serverless. however, you will hit the limits of whatever plan you're on: https://vercel.com/docs/limits/overview so then it comes down to billing.
might be worth considering rate limiting your next.js routes with something like https://github.com/upstash/ratelimit if you want to use Redis or https://www.npmjs.com/package/@arcjet/next which I'm building (doesn't require Redis).
also worth looking at https://vercel.com/docs/accounts/spend-management which is relatively new and lets you get alerts and shut down your projects if you hit certain spend limits
Rate limiting library for serverless runtimes. Contribute to upstash/ratelimit development by creating an account on GitHub.
Arcjet SDK for the Next.js framework. Latest version: 1.0.0-alpha.10, last published: 22 days ago. Start using @arcjet/next in your project by running npm i @arcjet/next. There are no other projects in the npm registry using @arcjet/next.
@jade prism Thanks man! So, if my application gets around five hundred simultaneos access, the vercel host wil not increase the time to provide the static contents?
it should handle it fine - they'll all be served in parallel
especially if it's static content
@jade prism Do u know any link that specifies the ram memory on vercel free plan?
Are u telling me that my FREE VERCEL HOSTED WEBSITE built on next will handle fine to 30 thousands concurrency access?
yeh that's what the limit docs says
No, only static content
Then you’re fine.