Hi there,
I am new to Manticoresearch and I am trying to build a web search for our website. So far, I create an index from a list of URLs which I crawl and extract the necessary information from.
To keep the index up to date, I want to be able to rebuild the index by
- create a new index
- crawl our URLs
- INSERT the information in the new index
- once finished, drop the old index and renaming the new index to the old index’ name
(i.e. I want to replace the old index by the new one and having no “down time” while the new index is created).
The documentation mentions “IMPORT table” but this seems only to be working if it’s the same index name. And RELOAD seems to be for plain tables.
Any help is appreciated!