Skip to content

Commit f4c64ff

Browse files
committed
Adding changelog entry
1 parent 8a0f6b3 commit f4c64ff

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
main
22
----
33

4+
* Added new per-operation option `refillIndexCache` to write operations:
5+
6+
- single-document write operations (insert, replace, update, delete)
7+
- multi-document write operations (insert_many, replace_many, update_many, delete_many)
8+
9+
If the option is set to `True`, new entries are added to in-memory index caches if
10+
document operations affect the edge index or cache-enabled persistent indexes. Every
11+
currently running transaction will keep track of which in-memory index cache entries
12+
were invalidated by the transaction, and will try to (re-)fill them later.
13+
14+
Example:
15+
```python
16+
collection.insert({"foo": "bar"}, refillIndexCaches=True)
17+
db.aql.execute("INSERT {foo: bar} INTO collection OPTIONS { refillIndexCaches: true }")
18+
```
19+
20+
7.5.9
21+
-----
22+
423
* Added cache and primaryKeyCache parameters to the inverted index API.
524

625
* Added allow_retry query parameter, making it possible to retry fetching the latest batch from a cursor.

0 commit comments

Comments
 (0)