Skip to content

Finder language

MarekSosnicki edited this page Oct 13, 2019 · 6 revisions

To search inside article one shall define a query using following commands:

  • EXACT_WORD(word,case_sensitive) - finds an exact word in articles text, word must be put inside "" putting parameter case_sensitive will find only match words with the same case (by default it can be different).

    • Example: EXACT_WORD("IEEE",case_sensitive)
  • PARTIAL_WORD(word,case_sensitive) - finds a word in article text - may be as a part of other word, word must be put inside "", putting parameter case_sensitive will find only match words with the same case (by default it can be different).

    • Example: PARTIAL_WORD("applica")
  • AND(finder1, finder2, ...) - aggregates multiple finders (at least one), results of the finders will be accepted only if all finders return any match.

    • Example: 'AND(EXACT_WORD("neural"),PARTIAL_WORD("networ"))
  • OR(finder1, finder2, ...) - aggregates multiple finders (at least one), results of the finders will be accepted only if any of the finders return any match.

    • Example: OR(EXACT_WORD("blue"), EXACT_WORD("orange"))

Clone this wiki locally