quarks
quarks

Reputation: 35276

Internal working of GAE Search API (Java)

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

Answers (1)

radia
radia

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

Related Questions