Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cloud Firestore equivalent of AppEngine/Datastore Memcache and Keys-only queries?

Using keys-only queries on the datastore and then fetching the entities from memcache is an inexpensive mechanism for reading tons of entities at once. For example, a keys-only query could be made for 1000 keys, which can be used to fetch the entities from memcahce, without having to perform many, if any, datastore reads.

Does/will Cloud Firestore offer anything like this?

like image 437
clocksmith Avatar asked Oct 06 '17 03:10

clocksmith


1 Answers

Cloud Firestore does not support this. It is something being considered but we have no timeframe to share.

like image 135
Dan McGrath Avatar answered Sep 22 '22 07:09

Dan McGrath