@@ -1428,7 +1428,7 @@ export interface DocumentCollection<T extends Record<string, any> = any>
14281428 CollectionMetadata & { revision : string ; checksum : string }
14291429 > ;
14301430 /**
1431- * Instructs ArangoDB to load the collection into memory.
1431+ * (MMFiles only.) Instructs ArangoDB to load the collection into memory.
14321432 *
14331433 * @param count - Whether the number of documents in the collection should
14341434 * be included in the server response. Disabling this may speed up this
@@ -1441,6 +1441,9 @@ export interface DocumentCollection<T extends Record<string, any> = any>
14411441 * await collection.load();
14421442 * // the collection has now been loaded into memory
14431443 * ```
1444+ *
1445+ * @deprecated This method was deprecated in ArangoDB 3.8 as it no longer has
1446+ * any effect since the MMFiles storage engine was removed in ArangoDB 3.7.
14441447 */
14451448 load (
14461449 count ?: true
@@ -1475,7 +1478,7 @@ export interface DocumentCollection<T extends Record<string, any> = any>
14751478 */
14761479 loadIndexes ( ) : Promise < boolean > ;
14771480 /**
1478- * Instructs ArangoDB to remove the collection from memory.
1481+ * (MMFiles only.) Instructs ArangoDB to remove the collection from memory.
14791482 *
14801483 * @example
14811484 * ```js
@@ -1484,6 +1487,9 @@ export interface DocumentCollection<T extends Record<string, any> = any>
14841487 * await collection.unload();
14851488 * // the collection has now been unloaded from memory
14861489 * ```
1490+ *
1491+ * @deprecated This method was deprecated in ArangoDB 3.8 as it no longer has
1492+ * any effect since the MMFiles storage engine was removed in ArangoDB 3.7.
14871493 */
14881494 unload ( ) : Promise < ArangoResponseMetadata & CollectionMetadata > ;
14891495 /**
0 commit comments