You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the layout and it's behaviour (serialization etc.) for Document is provided by tantivy.
Users of tantivy have to convert their structure into the tantivy Document.
An alternative approach would be to accept Document as a trait and let tantivy work with Documents via its trait methods.
So instead of converting into Document the user could just implement the Document trait on its structure and also potentially customize serialization into the doc store.
The text was updated successfully, but these errors were encountered:
Currently the layout and it's behaviour (serialization etc.) for Document is provided by tantivy.
Users of tantivy have to convert their structure into the tantivy Document.
An alternative approach would be to accept Document as a trait and let tantivy work with Documents via its trait methods.
So instead of converting into
Document
the user could just implement theDocument
trait on its structure and also potentially customize serialization into the doc store.The text was updated successfully, but these errors were encountered: