Created
February 6, 2019 23:27
-
-
Save tehsven/88f6ed7acfe91cbd9114e0bd063d7b22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Highlighting | |
index = SearchIndex.new | |
index.add(0, "I like movies based on cats") | |
index.add(1, "I like comics based on dogs") | |
index.add(2, "I like books based on fish") | |
index.search("cats") | |
=> returns Documents 0 with highlight ‘... based on *cats*’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment