-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add fulltext Lucene analyzers for faster search in text data #15
Comments
CALL db.index.fulltext.createNodeIndex("textOfPapersAndPatents",["Fragment", "Abstract", "Paper", "Patent", "PatentTitle", "PatentClaim","PatentAbstract"],["title", "text"]) |
// Fulltext index on GeneSymbol where the gene name is stored in property sid
CALL db.index.fulltext.createNodeIndex("GeneSymbolFullTextIndex",["GeneSymbol"],["sid"]) |
// Fulltext index on author names |
// Fulltext index on entity names like company names |
A dedicated loader to create all needed text indexes would make sense. this loader can be mounted into the motherlode pipeline. Can one create text indexes on nodes that are not existing yet? if yes we can collect all text indexes (including these from other loaders that are allready existing) at one place and create them at the beginning of the pipeline. |
https://github.com/covidgraph/graph-processing_fulltext-indexes Will run this against DEV today |
Indexes are on DEV and PRD |
We are preparing Cypher queries for users that want to query data either via Cypher (Neo4j-Browser) or Neo4j-Bloom.
Therefore we need to build text analyzers on the text properties on the following lables/properties:
The text was updated successfully, but these errors were encountered: