Skip to content

Instantly share code, notes, and snippets.

@tehsven
Created February 6, 2019 23:28
Show Gist options
  • Save tehsven/c1aa04c9d4f2e3c64be81dd87aec407a to your computer and use it in GitHub Desktop.
Save tehsven/c1aa04c9d4f2e3c64be81dd87aec407a to your computer and use it in GitHub Desktop.
# 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