I'm using Google App Engine flex PHP environment to run a Laravel php application. I'm trying to implement Scout search, which has two steps for setup:
- Index all documents to create a local index file. This is a one time process.
- Perform search activities using the index file.
The driver used for the search is TNTSearch.
Due to the distributed nature of the environment, new deployments wipe out the file system to deploy the code, thereby deleting the index file.
I'm looking for an approach to persist the index file across deployments.