ECChangeUnifierCache Namespace @beta
Deprecated in 5.1.9 - will not be removed until after 2027-05-04. Use ChangeUnifierCache.createInMemoryCache / ChangeUnifierCache.createSqliteBackedCache instead.
Function
| Name | Description |
|---|---|
| ECChangeUnifierCache.createInMemoryCache | Creates and returns a new in-memory cache for EC change unification. |
| ECChangeUnifierCache.createSqliteBackedCache | Creates an ECChangeUnifierCache that is backed by a database. |
Defined in
- backend/src/ChangesetECAdaptor.ts Line 421
ECChangeUnifierCache Interface @beta
Deprecated in 5.1.9 - will not be removed until after 2027-05-04. Use ChangeCache with ChangesetReader instead.
Represents a cache for unifying EC changes.
Extends
- Disposable
Methods
| Name | Description | |
|---|---|---|
| all(): IterableIterator<ChangedECInstance, any, any> | Returns an iterator for all the values in the cache. | |
| count(): number | Returns the number of entries in the cache. | |
| get(key: string): undefined | ChangedECInstance | Retrieves the value associated with the specified key from the cache. | |
| set(key: string, value: ChangedECInstance): void | Sets the value associated with the specified key in the cache. |
Defined in
- backend/src/ChangesetECAdaptor.ts Line 421
Last Updated: 05 May, 2026
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.