mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 21:21:40 +08:00
20 lines
No EOL
600 B
JavaScript
20 lines
No EOL
600 B
JavaScript
/**
|
|
* Purpose of this class is to cache list of attributes for notes.
|
|
*
|
|
* Cache invalidation granularity is global - whenever a write operation is detected to notes, branches or attributes
|
|
* we invalidate the whole cache. That's OK, since the purpose for this is to speed up batch read-only operations, such
|
|
* as loading the tree which uses attributes heavily.
|
|
*/
|
|
class NoteAttributeCache {
|
|
constructor() {
|
|
this.attributes = {};
|
|
}
|
|
|
|
invalidate() {
|
|
this.attributes = {};
|
|
}
|
|
}
|
|
|
|
const noteAttributeCache = new NoteAttributeCache();
|
|
|
|
export default noteAttributeCache; |