8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba6517 commit 909317bCopy full SHA for 909317b
arango/cursor.py
@@ -130,6 +130,14 @@ def _update(self, data: Json) -> Json:
130
stats["execution_time"] = stats.pop("executionTime")
131
if "httpRequests" in stats:
132
stats["http_requests"] = stats.pop("httpRequests")
133
+ if "cursorsCreated" in stats:
134
+ stats["cursorsCreated"] = stats.pop("cursorsCreated")
135
+ if "cursorsRearmed" in stats:
136
+ stats["cursorsRearmed"] = stats.pop("cursorsRearmed")
137
+ if "cacheHits" in stats:
138
+ stats["cacheHits"] = stats.pop("cacheHits")
139
+ if "cacheMisses" in stats:
140
+ stats["cacheMisses"] = stats.pop("cacheMisses")
141
self._stats = stats
142
result["statistics"] = stats
143
0 commit comments