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
{{ message }}
This repository was archived by the owner on Dec 13, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: 3.8/aql/invocation-with-arangosh.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -168,8 +168,17 @@ There are further options that can be passed in the *options* attribute of the *
168
168
the query result cache is disabled, and that they will be automatically inserted into
169
169
the query result cache when it is active in non-demand mode.
170
170
171
+
-*fillBlockCache*: if set to *true* or not specified, this will make the query store
172
+
the data it reads via the RocksDB storage engine in the RocksDB block cache. This is
173
+
usually the desired behavior. The option can be set to *false* for queries that are
174
+
known to either read a lot of data that would thrash the block cache, or for queries
175
+
that read data known to be outside of the hot set. By setting the option
176
+
to *false*, data read by the query will not make it into the RocksDB block cache if
177
+
it is not already in there, thus leaving more room for the actual hot set.
178
+
171
179
-*profile*: if set to *true* or *1*, returns extra timing information for the query. The timing
172
-
information is accessible via the *getExtra* method of the query result. Set to *2* the query will include execution stats per query plan node in sub-attribute *stats.nodes* of the *extra* return attribute.
180
+
information is accessible via the *getExtra* method of the query result. Set to *2* the query will
181
+
include execution stats per query plan node in sub-attribute *stats.nodes* of the *extra* return attribute.
173
182
Additionally the query plan is returned in the sub-attribute *extra.plan*.
174
183
175
184
-*maxWarningCount*: limits the number of warnings that are returned by the query if
Copy file name to clipboardExpand all lines: 3.9/aql/invocation-with-arangosh.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -168,8 +168,17 @@ There are further options that can be passed in the *options* attribute of the *
168
168
the query result cache is disabled, and that they will be automatically inserted into
169
169
the query result cache when it is active in non-demand mode.
170
170
171
+
-*fillBlockCache*: if set to *true* or not specified, this will make the query store
172
+
the data it reads via the RocksDB storage engine in the RocksDB block cache. This is
173
+
usually the desired behavior. The option can be set to *false* for queries that are
174
+
known to either read a lot of data that would thrash the block cache, or for queries
175
+
that read data known to be outside of the hot set. By setting the option
176
+
to *false*, data read by the query will not make it into the RocksDB block cache if
177
+
it is not already in there, thus leaving more room for the actual hot set.
178
+
171
179
-*profile*: if set to *true* or *1*, returns extra timing information for the query. The timing
172
-
information is accessible via the *getExtra* method of the query result. Set to *2* the query will include execution stats per query plan node in sub-attribute *stats.nodes* of the *extra* return attribute.
180
+
information is accessible via the *getExtra* method of the query result. Set to *2* the query will
181
+
include execution stats per query plan node in sub-attribute *stats.nodes* of the *extra* return attribute.
173
182
Additionally the query plan is returned in the sub-attribute *extra.plan*.
174
183
175
184
-*maxWarningCount*: limits the number of warnings that are returned by the query if
0 commit comments