Firestore empty result count as read? [duplicate]
up vote
0
down vote
favorite
This question already has an answer here:
Is Firestore charging us when offline more than 30 minutes?
1 answer
I'd like to know if you fetch documents but there is no document to return, does this count as read at least once or count nothing which doesn't increase price?
I've been searching but I couldn't find the answer.
Any help is appreciated.
firebase google-cloud-firestore
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 5 at 6:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
This question already has an answer here:
Is Firestore charging us when offline more than 30 minutes?
1 answer
I'd like to know if you fetch documents but there is no document to return, does this count as read at least once or count nothing which doesn't increase price?
I've been searching but I couldn't find the answer.
Any help is appreciated.
firebase google-cloud-firestore
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 5 at 6:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
Is Firestore charging us when offline more than 30 minutes?
1 answer
I'd like to know if you fetch documents but there is no document to return, does this count as read at least once or count nothing which doesn't increase price?
I've been searching but I couldn't find the answer.
Any help is appreciated.
firebase google-cloud-firestore
This question already has an answer here:
Is Firestore charging us when offline more than 30 minutes?
1 answer
I'd like to know if you fetch documents but there is no document to return, does this count as read at least once or count nothing which doesn't increase price?
I've been searching but I couldn't find the answer.
Any help is appreciated.
This question already has an answer here:
Is Firestore charging us when offline more than 30 minutes?
1 answer
firebase google-cloud-firestore
firebase google-cloud-firestore
asked Nov 5 at 3:48
Daibaku
368129
368129
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 5 at 6:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 5 at 6:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
From the official firebase documentation it clearly states that.
Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.
Source: https://firebase.google.com/docs/firestore/pricing#operations
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
From the official firebase documentation it clearly states that.
Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.
Source: https://firebase.google.com/docs/firestore/pricing#operations
add a comment |
up vote
2
down vote
accepted
From the official firebase documentation it clearly states that.
Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.
Source: https://firebase.google.com/docs/firestore/pricing#operations
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
From the official firebase documentation it clearly states that.
Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.
Source: https://firebase.google.com/docs/firestore/pricing#operations
From the official firebase documentation it clearly states that.
Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.
Source: https://firebase.google.com/docs/firestore/pricing#operations
answered Nov 5 at 6:31
Philip
3264
3264
add a comment |
add a comment |