Reputation: 555
I delete all of nodes and relationships in the neo4j browser with this command:
MATCH(a) DETACH DELETE a;
Now when I see my system info with this command:
:sysinfo
I see that my Logical Log and Total Store Size increased!
How can I decrease store size?
Upvotes: 0
Views: 428
Reputation: 20185
This is due to the transaction logs retention policy.
If you are on Neo4j Community Edition, you can disable the logs fully :
Upvotes: 3