Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
409 views
in Q2A Core by
closed by
Hello guys,

I once worked as a quality rater for a well-known search engine, so I realize that most helpful search result pages are those that contain the keywords in the title, in the URL as well as the site name.

So, for Q2A project, when a user does a query, the most important Q2A result pages are those that contains the query words in the title, as well as in the tags. Those containing the query words in the post content is of less importance.

For example, if I type tuberculosis in this question, and you search Q2A system with the query tuberculosis, you may find this question in the top 1 position because I now have 3 tuberculosis words. But obviously, my post is surely not about tuberculosis. If I received a task to rate the quality of this question post for the query "tuberculosis", I would rate it as OFF-TOPIC.

So, for a fairly new Q2A site, the qa_contentwords table may be a little of help, because you will have lots of Q2A result pages even though they are slightly relevant.

For a mature Q2A site with rich pool of questions, the qa_contentwords table becomes less necessary, as the users may find what he needs instantly with questions with higher level of relevancy.

So, how can I safely stop Q2A system from filling up qa_contentwords?

I can try some rude ways to stop it, but I need a more cultured way to do so.
closed with the note: Who cares?
by
Hmmm, ... Nobody even cares ...  I know what to do!

1 Answer

0 votes
by
edited by
You have to comment out from qa-include/plugins/qa-search-basic.php

//    qa_db_word_contentcount_update(array_keys($contentwordidcounts));

Overriding this function qa_db_word_contentcount_update will work too, but you'll need an override plugin!
by
Other than storage is there any harm in not doing this?
by
+1
The pure purpose is storage concerns. My hosting provider backups two-week database, so I need to clean up. I don't think it's a must.
by
Yes. Being in database that makes sense.
...