Home > Enterprise >  Firebase Storage very slow to respond
Firebase Storage very slow to respond

Time:05-12

The time to download an image from firebase storage: 2.59s

enter image description here

Is there any way to speed this up to a decent time, or is firebase storage unusable for small files (images/thumbs)?

My project:

https://beach-real-estate.vercel.app/

CodePudding user response:

Where did you choose for the firebase server location? It might just be lag? I've never experienced load times like that using firebase, unless it was for large files.

CodePudding user response:

Firebase storage is basically a bucket within GCP. If you want to have faster download times, you should make your files publicly available.

If you need a guide for that, use this

There's a similar question here that may help you.

  • Related