Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

126
Vistas
Understand Cloud Firestore billing

I have a question because I don't want a $30k bill.

Is this an acceptable code to work with, or is there a better way?

I am using firebase 8.10.0 with Vue.js 2.6.11 and I created the index in firestore.

If there are 1000 documents in the collection "users" and I need to apply filters in the query before making the request for only 50 using this code:

let users = db.collection("users");

users
.where("country" "==" "uk")
.where("online" "==" true)
.where("status" "==" "play")
.orderBy("time", "asc")
.startAt(startTime)
.endAt(endTime)
.limit(50)
.get().then(() => { .... });

Will I be charged for 50 readings or 1000 readings or how much?

What do they mean by "Cursors" in Understand Cloud Firestore billing?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You are charged for the number of documents that need to be read from the server. Since you only read at most 50 documents, you will never be charged for more than 50 document reads with this query. No matter if the collection has 50 documents, or 50 million documents, the charge for this query will be no more than 50 document reads.

The only exception to this general rule is if the query has no results. In that case you will be charged one document read.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda