You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we encounter some slowness with Neo4django. According the access log I noticed that the ORM does a lot of requests to load the Model schema from Neo4j. I understand why we need to do that schema but don't you think we could cache this in any way? If yes, I'll be happy to give it a try but I don't know where should I look first.
Very best,
P
The text was updated successfully, but these errors were encountered:
@pirhoo sorry for the long silence on this. Honestly, I think the best way to speed up this stuff would be to focus more heavily on the scripting, and eschew the use of neo4j-rest-client's pure-REST for basic models- or at least introduce some discipline. For example, it takes a few calls to create a new node, instead of one- partly because we blindly rely on the underlying client, and don't think about what triggers an update.
Hi @mhluongo,
we encounter some slowness with Neo4django. According the access log I noticed that the ORM does a lot of requests to load the Model schema from Neo4j. I understand why we need to do that schema but don't you think we could cache this in any way? If yes, I'll be happy to give it a try but I don't know where should I look first.
Very best,
P
The text was updated successfully, but these errors were encountered: