Closed shaikatzir closed 10 years ago
Which query are you executing?
example:
import neo4jrestclient.client as client
from neo4jrestclient.client import GraphDatabase
gdb = GraphDatabase("http://localhost:7474/db/data/")
skip =0
query = "MATCH (it:Item) return it skip {skip} limit 10"
while 1:
results = gdb.query(query, returns=(client.Node),params={"skip" : skip})
print skip
skip+=10
for result in results:
res = result
Update. Still investigating.
Hope this solves it.
Ran the following code , and the heap just kept on growing ...