Reputation: 35276
I would like to know how the Search API store Document
internally? Does it store a Document
into the Datastore with a "Document" kind? Or something else? Also where are indexes stored? In memcache?
Upvotes: 0
Views: 58
Reputation: 1486
Documents and indexes are stored in HR Datastore
Documents and indexes are saved in a separate persistent store optimized for search operations
The Document class represents documents. Each document has a document identifier and a list of fields.
The Document class represents documents. Each document has a document identifier and a list of fields.
It's all in Google's documentation
Upvotes: 2