Created
February 6, 2019 23:26
-
-
Save tehsven/f2631bde147b9728eda147f2d07e17cb 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
# Basic Indexing and Searching | |
index = SearchIndex.new | |
index.add(0, "this is an example Document ID:0") | |
index.add(1, "here is another example Document ID:1") | |
index.add(2, "and one more Document ID:2") | |
index.search("example") | |
=> returns Documents 0 and 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment