Replies: 1 comment 2 replies
-
|
If I were going to tackle this, I would probably start by trying an approach similar to InjectSpellingListener. You say that did not work for you -- could you say a little more about what went wrong? Maybe I can help troubleshoot, or think of a different approach if there's a clear reason why this proved to be unworkable for you! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The option of indexing authority files was built into Vufind many years ago and a journal article was published describing various application scenarios for this collection (https://journal.code4lib.org/articles/5354).
However, one obvious application is missing from this compilation:
Direct catalog searching with variant names in Vufind.
With today's performance, this is possible in Solr with a join query, an example with a variant access point of the poet Friedrich Schiller:
q={!join method=crossCollection from=gnd to=author_GND fromIndex=authority}see_also_keywords:sileris
The following prerequisites are necessary:
Actually identical to id, but with docValues="true”
We have tried in various ways to inject this join query as a string into the search, with custom munges and similar to InjectSpellingListener.php
Unfortunately, this did not work.
We would like to have a way to inject such a join parameter into the query.
Beta Was this translation helpful? Give feedback.
All reactions