Skip to content

Commit 715430a

Browse files
committed
Remove mentions of 'RocksDB only'
1 parent 34c1687 commit 715430a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/collection.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,8 +1174,8 @@ export interface DocumentCollection<T extends Record<string, any> = any>
11741174
>
11751175
>;
11761176
/**
1177-
* (RocksDB only.) Instructs ArangoDB to recalculate the collection's
1178-
* document count to fix any inconsistencies.
1177+
* Instructs ArangoDB to recalculate the collection's document count to fix
1178+
* any inconsistencies.
11791179
*
11801180
* @example
11811181
* ```js
@@ -1248,8 +1248,8 @@ export interface DocumentCollection<T extends Record<string, any> = any>
12481248
>
12491249
>;
12501250
/**
1251-
* (RocksDB only.) Instructs ArangoDB to load as many indexes of the
1252-
* collection into memory as permitted by the memory limit.
1251+
* Instructs ArangoDB to load as many indexes of the collection into memory
1252+
* as permitted by the memory limit.
12531253
*
12541254
* @example
12551255
* ```js

src/database.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export type TransactionOptions = {
162162
*/
163163
lockTimeout?: number;
164164
/**
165-
* (RocksDB only.) Determines the transaction size limit in bytes.
165+
* Determines the transaction size limit in bytes.
166166
*/
167167
maxTransactionSize?: number;
168168
};
@@ -311,17 +311,17 @@ export type QueryOptions = {
311311
*/
312312
maxNodesPerCallstack?: number;
313313
/**
314-
* (RocksDB only.) Maximum size of transactions in bytes.
314+
* Maximum size of transactions in bytes.
315315
*/
316316
maxTransactionSize?: number;
317317
/**
318-
* (RocksDB only.) Maximum number of operations after which an intermediate
319-
* commit is automatically performed.
318+
* Maximum number of operations after which an intermediate commit is
319+
* automatically performed.
320320
*/
321321
intermediateCommitCount?: number;
322322
/**
323-
* (RocksDB only.) Maximum total size of operations in bytes after which an
324-
* intermediate commit is automatically performed.
323+
* Maximum total size of operations in bytes after which an intermediate
324+
* commit is automatically performed.
325325
*/
326326
intermediateCommitSize?: number;
327327
/**

0 commit comments

Comments
 (0)