Does google search API eliminate stop words? -


consider if search query in google search api "i love you". in query, "i" , "you" stop words , occur in every document. keyword(s) present in search "love" should searched for. so, there must process detect stop words , eliminate them document list feed api. google automatically in search api or have process search query before firing query? if google uses idf (inverse document frequency) table eliminate (or less - prioritise) stop words, how it? if not, how can eliminate stop words? algorithm (if any) works other (vernacular) languages too?

link google search api here

google full text search api not eliminate stop words.

if perform global search search query "i love you", documents have 3 words , not stop words

the white space between words, quoted strings, numbers, , dates treated implicit , operator.

if want same functionality while searching within field here 1 approach for:

if enclose query between parentheses search return documents contains words in query.

for case "i love you", search query should be:

field_name = "(i love you)" 

or

field_name = "(i , love , you)" 

this way documents contain words , not stop words.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -