hammadsaleemm commented on issue #920: URL: https://github.com/apache/age/issues/920#issuecomment-1546865818
To create the index you can use this commad as mentioned by Talha `CREATE INDEX ON :Person(roll)', and to speed it up , I think you can use cypher queries like `MATCH (p:Person) WHERE p.roll = 25 RETURN p ` With the index in place, this query should run faster than a similar query without the index. ` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
