I was wondering if the reindex from the admin panel has to be done frequently or if it should be taken care of automatically when new questions/answers/comments are added.
What raises my questions is that I've created a page to import question from a CSV file. It works fine, but search results are better after I manually do a reindex. I use $postid =qa_question_create(null, $questionuserid, null, null, $questiontext, $questiondetail, '', null,$questiontags, false, null,$questioncategoryid); and $answerid=qa_answer_create($answeruserid, null, null, $sampleanswer,'',null, false, null, $question); which I thought would take care of the indexing stuff for me.
For now, I just run a reindex after the import, but I want to be sure searching on my site is always working fine.