Monday, April 29, 2024

Examples
freelance job
Return all records that contain both "freelance" and "job".
freelance OR job
Return all records that contain "freelance" or "job".
+freelance -job
Return all records that contain "freelance" but not "job".
freelance^10 OR job^0.1
Return all records that contain "freelance" or "job". Records that contain "freelance" have a higher relevance value than that contain "job".
free*
Return all records that contain "free", "freelance", "freelancer", "freelancers", "freelancing", ...
free?
Return all records that contain "free", "frees", "freed", "freer", ...
"freelance job"
Records that contain the phrase "freelance job" exactly are returned. For example, "website design freelance job" and "programming freelance job" contain the phrase "freelance job" exactly, but "freelance jobs" and "freelance programming job" do not.
freelance AND (job^10 OR designer^0.1)
Return records that contain "freelance" and "job", or "freelance" and "designer". Records that contain "job" have a higher relevance value than that contain "designer".