I have entities that I need to search through.
They can all easily fit into Documents within Search API (because all of it's properties need to be searchable) or within Datastore as Entities (I'm losing full search capabilities but it's not that important to me because I can work-through with Datastore rudimentary search).
So I can put my entities into Search API or Datastore so I can search and retrieve them later.
Datastore pricing is $0.06 per 100,000 operations where Query pricing is 1 read + 1 read per entity retrieved.
Search API pricing is $0.50 per 10K queries.
The storage costs are the same.
If my search averages ~200 results per query that would be:
1 + 200 operationsor about100,000/200=500 searchesfor$0.06which is$0,00012/per searchfor Datastore- 10K queries for
$0.50or$0,00005/per searchfor Search API
Is the datastore that (2,4x) much more expensive or...?