How does AGE optimize queries? #1784
-
Does it create specialized indexes or is it primarily syntactic sugar for writing complex PostgreSQL recursive queries in Cypher? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@jrgemignani @rafsun42 @dehowef @MuhammadTahaNaveed, could you give a hand here? |
Beta Was this translation helpful? Give feedback.
-
@TheOtherBrian1 I wish it was all syntactic sugar, that would have made this project a lot easier :) Cypher queries are transformed into queries that PG can understand or process with its own backend. We try to use as much of PGs framework as possible so as to enable usage of things like indexes, for example. |
Beta Was this translation helpful? Give feedback.
@TheOtherBrian1 I wish it was all syntactic sugar, that would have made this project a lot easier :) Cypher queries are transformed into queries that PG can understand or process with its own backend. We try to use as much of PGs framework as possible so as to enable usage of things like indexes, for example.