Schema(title=TEXT(analyzer=stem_ana, stored=True),
content=TEXT(analyzer=stem_ana, vector=True),
link=ID(stored=True),
meta=TEXT(analyzer=stem_ana),
path=ID(stored=True),
scores=ID(stored=True),
clicks=NUMERIC(stored=True),
file_name=ID(unique=True)
)
I am unable to retrieve the field content=TEXT(analyzer=stem_ana, vector=True)
I wan't to update the content of clicks
without altering the other fields, how should I do it?
I have no clue how to retrieve the contents of the fields that are not stored.