* Adds or updates entity in the local database. * * The `tags` is a list of strings that should be stored properly for fast * look-up. * * @example Usage by the SDK * ```ts * await cache.setEntity("node-abc42", "{ node abc42 serialised data }", ["parentUid:abc123",
(key: string, value: T, tags?: string[])
| 61 | * @throws Exception if `key` from `tags` is not one of the tag keys provided from `usedTagKeysBySDK` in constructor. |
| 62 | */ |
| 63 | setEntity(key: string, value: T, tags?: string[]): Promise<void>; |
| 64 | |
| 65 | /** |
| 66 | * Returns the data of the entity stored locally. |
no outgoing calls
no test coverage detected