Levenshtein distance and modern indices in Neo4j

I used obsolete indexes (aka Lucene) to run queries like the ones below in Neo4j Cypher to traverse millions of real-time simulators and find similar objects:

START file = node:File("simhash:THE_SIMHASH_HERE~0.8")
RETURN file.name

Since Lucene indexes are now deprecated, I wonder if there is a way to run similar queries for modern Label-based indexes.

+4
source share

Source: https://habr.com/ru/post/1535953/


All Articles