The two options I’m considering are index and then import vs importing and then indexing. Is there one method that is significantly faster?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In general, for large inserts, it is better to insert then index.
Otherwise the insert process will need to insert while indexing, which will be slow and get slower and slower as more items are added.
Consider an shuffled deck of cards – what would be faster? Taking all of the cards and sorting them in place or taking each card one at a time and putting it in place in a new pile? (not the best analogy, I know).