Skip to content

Instantly share code, notes, and snippets.

@tehsven
Created February 6, 2019 23:27
Show Gist options
  • Save tehsven/1f4cea07f45219a20668f3014a382aa6 to your computer and use it in GitHub Desktop.
Save tehsven/1f4cea07f45219a20668f3014a382aa6 to your computer and use it in GitHub Desktop.
# Scoring of Documents for a Query
index = SearchIndex.new
index.add(0, "some more examples")
index.add(1, "Examples are great for examples of examples")
index.search("examples")
=> returns Document 1 with score 1.0, Document 0 with score 0.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment