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 operations or about 100,000/200=500 searches for $0.06 which is $0,00012/per search for Datastore$0.50 or $0,00005/per search for Search APIIs the datastore that (2,4x) much more expensive or...?