Google Search APIs versus Dedicated Search Engine

I am building a Q&A website such as Stack Overflow and now I want to add its search capabilities.

I want to use the Google Search API, but one of my friends said that it’s better to have your own search engine, because Google does not index all pages (especially recently added pages), and also has a negative effect on site ranking.

My question is whether these statements are true or not, and what is the best way to search on this site?

+4
source share
1 answer

Full text search capabilities may be available depending on your database. For example, check MySQL: https://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html

An alternative solution is to use a dedicated search index such as Lucene: https://lucene.apache.org/core/

+2
source

All Articles