Created
February 6, 2019 23:28
-
-
Save tehsven/c1aa04c9d4f2e3c64be81dd87aec407a 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
# Multiple Fields per Document | |
index = SearchIndex.new | |
index.add(0, {name: "Example name", price: 5.00}) | |
index.search("example") | |
=> returns Document 0: {name: "Example name", price: 5.00} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment