-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
44 small changes #47
44 small changes #47
Conversation
Please check especially the changes in the BibEntryMapping. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see small comments in BibEntryMapping
'journalTitle' => [ 'type' => 'keyword'], | ||
'creators' => [ | ||
'type' => 'nested', | ||
'properties' => [ | ||
'creatorType' => [ | ||
'type' => 'keyword' | ||
'type' => 'text', | ||
'fields' => [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change creatorType from type keyword to text and creatorType.keyword means you will also textsearch in creatorType?
(the key for the facette in serachresults will probably change from creatorType to creatorType.keyword)
'version' => [ 'type' => 'long' ], | ||
'title' => [ 'type' => 'text'], | ||
'university' => [ 'type' => 'text'], | ||
'bookTitle' => [ 'type' => 'text'], | ||
'series' => [ 'type' => 'text', 'fields' => [ 'keyword' => [ 'type' => 'keyword', 'ignore_above' => 256 ] ] ], | ||
'publicationTitle' => [ 'type' => 'text', 'fields' => [ 'keyword' => [ 'type' => 'keyword', 'ignore_above' => 256 ] ] ], | ||
'language' => [ 'type' => 'text', 'fields' => [ 'keyword' => [ 'type' => 'keyword', 'ignore_above' => 256 ] ] ], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe simple [ 'type' => 'keyword'] would be sufficient
No description provided.