iongraphix
iongraphix

Reputation: 86

Modifying Cypher Query Engine

I would like to modify the way Cypher processes queries sent to it for pattern matching. I have read about Execution plans and how Cypher chooses the best plan with the least number of operations and all. This is pretty good. However I am looking into implementing a Similarity Search feature that allows you to specify a Query graph that would be matched if not exact, close (similar). I have seen a few examples of this in theory. I would like to implement something of this sort for Neo4j. Which I am guessing would require a change in how the Query Engine deals with queries sent to it. Or Worse :)

Here are some links that demonstrate the idea

http://www.cs.cmu.edu/~dchau/graphite/graphite.pdf http://www.cidrdb.org/cidr2013/Papers/CIDR13_Paper72.pdf

I am looking for ideas. Anything at all in relation to the topic would be helpful. Thanks in advance

(:I)<-[:NEEDING_HELP_FROM]-(:YOU)

Upvotes: 2

Views: 111

Answers (1)

MicTech
MicTech

Reputation: 45083

From my point of view, better for you is to create Unmanaged Extensions.

Because you can create you own custom functionality into Neo4j server.

You are not able to extend Cypher Language without your own fork of source code.

Upvotes: 3

Related Questions