Skip to content

Instantly share code, notes, and snippets.

@thigm85
Created March 24, 2021 11:24
Show Gist options
  • Save thigm85/048117a72d7adf358583101a839d1050 to your computer and use it in GitHub Desktop.
Save thigm85/048117a72d7adf358583101a839d1050 to your computer and use it in GitHub Desktop.
from vespa.package import Field
app_package.schema.add_fields(
Field(name="news_id", type="string", indexing=["summary", "attribute"], attribute=["fast-search"]),
Field(name="category", type="string", indexing=["summary", "attribute"]),
Field(name="subcategory", type="string", indexing=["summary", "attribute"]),
Field(name="title", type="string", indexing=["index", "summary"], index="enable-bm25"),
Field(name="abstract", type="string", indexing=["index", "summary"], index="enable-bm25"),
Field(name="url", type="string", indexing=["index", "summary"]),
Field(name="date", type="int", indexing=["summary", "attribute"]),
Field(name="clicks", type="int", indexing=["summary", "attribute"]),
Field(name="impressions", type="int", indexing=["summary", "attribute"]),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment