How do I rebuild a table index after adding documents?
So what I've done, is I've created a large amount of documents that are beyond the non-indexed return limit, and have then generated an index for that table.
I've then added new data, and am testing out the returns, to find the new data hasn't been indexed yet. New documents returns fine via .take(3), but as far as the index return is concerned - those new documents don't exist.
I'd like to understand if it's possible to trigger the manual rebuild of an index, I guess my interval would when approaching an additional ~8000 records to trigger the rebuild - which would allow for either a table look up of new non-indexed records, or an indexed lookup of the previously indexed records.
Generally speaking, if index rebuild is automated - how long is the wait before new documents appear in the index?
