#Limit of simultaneos access on my application Next.js hosted on Vercel

14 messages · Page 1 of 1 (latest)

slender reef
#

I need to know how many simultaneos access my serveless Next.js website hosted on Vercel can handle. Someone could help me?

amber wolfBOT
#

🔎 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)

jade prism
#

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

GitHub

Rate limiting library for serverless runtimes. Contribute to upstash/ratelimit development by creating an account on GitHub.

slender reef
#

@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?

jade prism
#

it should handle it fine - they'll all be served in parallel

#

especially if it's static content

slender reef
#

@jade prism Do u know any link that specifies the ram memory on vercel free plan?

jade prism
slender reef
#

Are u telling me that my FREE VERCEL HOSTED WEBSITE built on next will handle fine to 30 thousands concurrency access?

jade prism
#

yeh that's what the limit docs says

warped gate
#

Are you doing anything beyond static content?

#

Like db access ?

slender reef
#

No, only static content

warped gate
#

Then you’re fine.