-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Migrate fulltext (PDF) search from Lucene to PostgreSQL #12261
Copy link
Copy link
Open
Description
Currently, JabRef employs two different search backends: PostgreSQL and Apache Lucene. PostgreSQL is used for the search within the library (.bib file) and Apache Lucene is used for the fulltext search of PDF files.
It turned out that it is really hard to get "contains" search working properly in Lucene.
the query must be tokenized using the same tokenizer as during indexing to extract words from the query and look into the index for these words.
This will fix #12685
Working on handling following variants for the same word is as hard in Postgres as it is in Lucene:
DüsseldorfDuesseldorfD\"{u}sseldorfDusseldorf
Reactions are currently unavailable